// Analogies Set 7 — answer key // correct index is 0-based: A=0, B=1, C=2, D=3, E=4 const QUESTIONS = [ { question: "net : tennis = hoop : ?", options: ["ring", "earring", "basketball", "jump", "circle"], correct: 2, explanation: 'A net is the essential scoring target in tennis — the ball must pass over it. A hoop is the essential scoring target in basketball — the ball must pass through it. So "hoop : basketball" mirrors "net : tennis".' }, { question: "harbor : ship = garage : ?", options: ["door", "park", "car", "tool", "house"], correct: 2 }, { question: "baton : conductor = gavel : ?", options: ["hammer", "judge", "court", "wood", "hit"], correct: 1 }, { question: "chorus : song = refrain : ?", options: ["stop", "sing", "poem", "repeat", "music"], correct: 2 }, { question: "chrysalis : moth = egg : ?", options: ["hen", "shell", "reptile", "hatch", "nest"], correct: 2 }, { question: "sapling : tree = foal : ?", options: ["young", "stable", "horse", "colt", "pony"], correct: 2 }, { question: "pedestal : statue = base : ?", options: ["bottom", "ball", "lamp", "low", "ground"], correct: 2 }, { question: "dial : radio = remote : ?", options: ["far", "control", "television", "button", "battery"], correct: 2 }, { question: "grain : bread = cocoa : ?", options: ["brown", "bean", "chocolate", "drink", "sweet"], correct: 2 }, { question: "drought : crop = recession : ?", options: ["money", "economy", "bank", "business", "poor"], correct: 3 }, { question: "quiver : arrow = holster : ?", options: ["gun", "belt", "leather", "cowboy", "shoot"], correct: 0 }, { question: "binoculars : magnify = headphones : ?", options: ["music", "amplify", "ear", "wire", "listen"], correct: 1 }, { question: "chimney : house = exhaust : ?", options: ["gas", "car", "fume", "tired", "pipe"], correct: 1 }, { question: "constellation : star = bouquet : ?", options: ["smell", "vase", "flower", "give", "rose"], correct: 2 }, { question: "umpire : baseball = referee : ?", options: ["whistle", "soccer", "rule", "card", "foul"], correct: 1 }, { question: "wax : wane = expand : ?", options: ["grow", "big", "contract", "stretch", "wide"], correct: 2 }, { question: "signature : document = stamp : ?", options: ["post", "mail", "letter", "press", "collect"], correct: 2 }, { question: "antidote : poison = cure : ?", options: ["doctor", "medicine", "disease", "heal", "pill"], correct: 2 }, { question: "sow : reap = invest : ?", options: ["money", "bank", "profit", "stock", "save"], correct: 2 }, { question: "embers : fire = ruins : ?", options: ["old", "building", "ancient", "stone", "Roman"], correct: 1 }, { question: "trench : soldier = cockpit : ?", options: ["plane", "pilot", "fly", "seat", "control"], correct: 1 }, { question: "almanac : dates = atlas : ?", options: ["strong", "book", "world", "maps", "globe"], correct: 3 }, { question: "fender : car = bumper : ?", options: ["hit", "crash", "truck", "front", "sticker"], correct: 2 }, { question: "comb : hair = rake : ?", options: ["garden", "leaves", "tool", "teeth", "yard"], correct: 1 }, { question: "siren : ambulance = bell : ?", options: ["ring", "church", "loud", "tower", "sound"], correct: 1 }, { question: "plumage : bird = fur : ?", options: ["soft", "coat", "warm", "mammal", "bear"], correct: 3 }, { question: "cocoon : moth = den : ?", options: ["cave", "hide", "bear", "dark", "animal"], correct: 2 }, { question: "dose : medicine = portion : ?", options: ["part", "food", "plate", "half", "small"], correct: 1 }, { question: "lens : focus = funnel : ?", options: ["pour", "liquid", "narrow", "channel", "wide"], correct: 3 }, { question: "symptom : disease = clue : ?", options: ["detective", "mystery", "search", "find", "hint"], correct: 1 }, { question: "thorn : rose = quill : ?", options: ["pen", "write", "ink", "porcupine", "sharp"], correct: 3 }, { question: "awning : sun = levee : ?", options: ["flood", "river", "wall", "dam", "water"], correct: 0 }, { question: "pigment : color = spice : ?", options: ["food", "pepper", "flavor", "hot", "cook"], correct: 2 }, { question: "knot : rope = wrinkle : ?", options: ["old", "iron", "fabric", "skin", "fold"], correct: 2 }, { question: "agenda : meeting = itinerary : ?", options: ["travel", "trip", "plan", "map", "fly"], correct: 1 }, { question: "mortar : brick = thread : ?", options: ["needle", "sew", "cloth", "fabric", "string"], correct: 2 }, { question: "rein : horse = leash : ?", options: ["walk", "collar", "pet", "dog", "pull"], correct: 3 }, { question: "prologue : play = preface : ?", options: ["book", "start", "before", "page", "author"], correct: 0 }, { question: "stove : kitchen = furnace : ?", options: ["hot", "basement", "heat", "coal", "fire"], correct: 1 }, { question: "dam : reservoir = wall : ?", options: ["brick", "paint", "room", "build", "fence"], correct: 2 }, ];