// Analogies Set 8 — answer key // correct index is 0-based: A=0, B=1, C=2, D=3, E=4 const QUESTIONS = [ { question: "weld : metal = stitch : ?", options: ["needle", "thread", "fabric", "sew", "patch"], correct: 2 }, { question: "index : book = legend : ?", options: ["myth", "story", "hero", "map", "old"], correct: 3 }, { question: "mitten : hand = scarf : ?", options: ["wool", "winter", "neck", "warm", "knit"], correct: 2 }, { question: "terrace : hill = balcony : ?", options: ["view", "building", "rail", "floor", "window"], correct: 1 }, { question: "burrow : rabbit = nest : ?", options: ["tree", "egg", "bird", "twig", "branch"], correct: 2 }, { question: "grain : granary = wine : ?", options: ["grape", "bottle", "cellar", "red", "drink"], correct: 2 }, { question: "clasp : necklace = buckle : ?", options: ["belt", "shoe", "metal", "fasten", "strap"], correct: 0 }, { question: "antenna : signal = net : ?", options: ["fish", "catch", "web", "hole", "rope"], correct: 0 }, { question: "scabbard : sword = case : ?", options: ["box", "violin", "detective", "court", "pack"], correct: 1 }, { question: "pliers : grip = drill : ?", options: ["hole", "bore", "tool", "bit", "wood"], correct: 1 }, { question: "sentry : gate = goalkeeper : ?", options: ["save", "ball", "goal", "kick", "team"], correct: 2 }, { question: "dial : watch = screen : ?", options: ["movie", "phone", "bright", "glass", "touch"], correct: 1 }, { question: "muzzle : dog = mask : ?", options: ["Halloween", "cover", "face", "hide", "person"], correct: 4 }, { question: "almanac : weather = encyclopedia : ?", options: ["book", "knowledge", "thick", "library", "read"], correct: 1 }, { question: "cliff : erosion = metal : ?", options: ["rust", "hard", "iron", "ore", "heavy"], correct: 0 }, { question: "vaccine : disease = helmet : ?", options: ["head", "hard", "injury", "bike", "safety"], correct: 2 }, { question: "menu : choose = map : ?", options: ["fold", "navigate", "road", "lost", "travel"], correct: 1 }, { question: "canal : river = tunnel : ?", options: ["dark", "dig", "road", "train", "underground"], correct: 2 }, { question: "chorus : solo = crowd : ?", options: ["people", "loud", "individual", "many", "group"], correct: 2 }, { question: "veneer : wood = frosting : ?", options: ["sugar", "cake", "sweet", "white", "decorate"], correct: 1 }, { question: "caption : photo = subtitle : ?", options: ["text", "film", "language", "read", "bottom"], correct: 1 }, { question: "fossil : dinosaur = ruin : ?", options: ["old", "stone", "ancient", "civilization", "Rome"], correct: 3 }, { question: "yolk : egg = core : ?", options: ["hard", "center", "apple", "earth", "hot"], correct: 3 }, { question: "spark : fire = germ : ?", options: ["bacteria", "small", "disease", "sick", "clean"], correct: 2 }, { question: "palette : color = keyboard : ?", options: ["type", "letter", "computer", "finger", "key"], correct: 1 }, { question: "irrigation : farm = plumbing : ?", options: ["pipe", "water", "house", "leak", "fix"], correct: 2 }, { question: "frame : painting = binding : ?", options: ["book", "tie", "glue", "cover", "leather"], correct: 0 }, { question: "draft : revision = sketch : ?", options: ["draw", "art", "pencil", "painting", "rough"], correct: 3 }, { question: "moat : castle = fence : ?", options: ["post", "wire", "yard", "gate", "neighbor"], correct: 2 }, { question: "clutch : car = trigger : ?", options: ["pull", "gun", "shoot", "finger", "weapon"], correct: 1 }, { question: "knob : door = switch : ?", options: ["light", "on", "off", "flip", "electric"], correct: 0 }, { question: "dam : flood = firebreak : ?", options: ["fire", "forest", "burn", "wildfire", "smoke"], correct: 3 }, { question: "speedometer : speed = altimeter : ?", options: ["height", "altitude", "plane", "climb", "fly"], correct: 1 }, { question: "ferry : river = elevator : ?", options: ["up", "button", "building", "lift", "shaft"], correct: 2 }, { question: "kneel : stand = whisper : ?", options: ["quiet", "shout", "soft", "speak", "secret"], correct: 1 }, { question: "drought : water = insomnia : ?", options: ["tired", "bed", "sleep", "night", "awake"], correct: 2 }, { question: "chisel : stone = lathe : ?", options: ["spin", "wood", "shape", "machine", "tool"], correct: 1 }, { question: "bouquet : fragrance = symphony : ?", options: ["orchestra", "music", "harmony", "conductor", "classical"], correct: 2 }, { question: "calendar : year = timetable : ?", options: ["school", "train", "day", "schedule", "class"], correct: 2 }, { question: "root : nourish = lung : ?", options: ["air", "breathe", "chest", "body", "organ"], correct: 1 }, ];