// Analogies Set 10 — answer key // correct index is 0-based: A=0, B=1, C=2, D=3, E=4 const QUESTIONS = [ { question: "talon : eagle = fang : ?", options: ["snake", "bite", "venom", "tooth", "jaw"], correct: 0 }, { question: "drought : rain = famine : ?", options: ["hunger", "food", "crop", "poverty", "aid"], correct: 1 }, { question: "ignite : fire = detonate : ?", options: ["bomb", "blast", "spark", "burn", "explosive"], correct: 0 }, { question: "mast : sail = pole : ?", options: ["tent", "flag", "climb", "metal", "stick"], correct: 1 }, { question: "sow : seeds = plant : ?", options: ["soil", "grow", "roots", "bulbs", "garden"], correct: 3 }, { question: "lair : wolf = burrow : ?", options: ["rabbit", "dig", "hole", "earth", "tunnel"], correct: 0 }, { question: "optic : eye = acoustic : ?", options: ["music", "ear", "hearing", "sound", "noise"], correct: 1 }, { question: "venom : cobra = ink : ?", options: ["squid", "pen", "write", "dark", "fluid"], correct: 0 }, { question: "libretto : opera = script : ?", options: ["film", "actor", "stage", "director", "play"], correct: 0 }, { question: "patella : knee = mandible : ?", options: ["mouth", "jaw", "skull", "chin", "bite"], correct: 1 }, { question: "apprentice : master = pupil : ?", options: ["school", "class", "teacher", "learn", "desk"], correct: 2 }, { question: "chlorophyll : leaf = melanin : ?", options: ["sun", "skin", "dark", "pigment", "colour"], correct: 1 }, { question: "decibel : sound = pixel : ?", options: ["screen", "image", "colour", "display", "camera"], correct: 1 }, { question: "ember : fire = residue : ?", options: ["chemical", "reaction", "waste", "remains", "product"], correct: 3 }, { question: "labyrinth : minotaur = fortress : ?", options: ["castle", "knight", "garrison", "wall", "siege"], correct: 2 }, { question: "delta : river = cape : ?", options: ["hat", "coast", "sea", "land", "shore"], correct: 1 }, { question: "wick : candle = filament : ?", options: ["bulb", "light", "wire", "heat", "glow"], correct: 0 }, { question: "canto : poem = chapter : ?", options: ["verse", "novel", "line", "book", "paragraph"], correct: 1 }, { question: "hibernate : bear = aestivate : ?", options: ["snake", "tortoise", "snail", "frog", "hedgehog"], correct: 3 }, { question: "turret : castle = steeple : ?", options: ["church", "bell", "tower", "spire", "roof"], correct: 0 }, { question: "atlas : maps = anthology : ?", options: ["poets", "poems", "stories", "essays", "novels"], correct: 1 }, { question: "meander : river = wander : ?", options: ["road", "traveller", "path", "forest", "direction"], correct: 1 }, { question: "bristle : brush = spike : ?", options: ["thorn", "cactus", "metal", "fence", "point"], correct: 1 }, { question: "epoch : history = chapter : ?", options: ["story", "novel", "page", "book", "author"], correct: 1 }, { question: "fumble : grip = stumble : ?", options: ["run", "walk", "balance", "fall", "trip"], correct: 2 }, { question: "tundra : arctic = savanna : ?", options: ["jungle", "tropics", "desert", "grassland", "africa"], correct: 1 }, { question: "callous : feeling = deaf : ?", options: ["ear", "sound", "hearing", "noise", "listen"], correct: 2 }, { question: "embargo : trade = quarantine : ?", options: ["disease", "movement", "border", "travel", "isolation"], correct: 1 }, { question: "corolla : flower = carapace : ?", options: ["shell", "crab", "turtle", "armour", "back"], correct: 0 }, { question: "etymology : words = genealogy : ?", options: ["family", "history", "birth", "ancestors", "genes"], correct: 3 }, { question: "nave : church = cockpit : ?", options: ["pilot", "aircraft", "control", "cabin", "plane"], correct: 1 }, { question: "silt : river bed = sediment : ?", options: ["lake", "ocean", "bottom", "deposit", "water"], correct: 3 }, { question: "tempo : music = pace : ?", options: ["run", "walk", "speed", "race", "time"], correct: 2 }, { question: "lens : camera = cornea : ?", options: ["pupil", "eye", "sight", "vision", "retina"], correct: 1 }, { question: "synopsis : novel = trailer : ?", options: ["truck", "film", "preview", "cinema", "clip"], correct: 1 }, { question: "drought : arid = blizzard : ?", options: ["cold", "snow", "arctic", "frozen", "icy"], correct: 1 }, { question: "cartridge : printer = battery : ?", options: ["power", "torch", "electricity", "charge", "energy"], correct: 1 }, { question: "podium : speaker = altar : ?", options: ["church", "priest", "pray", "worship", "religion"], correct: 1 }, { question: "camouflage : predator = disguise : ?", options: ["spy", "costume", "mask", "identity", "hide"], correct: 0 }, { question: "appendix : book = footnote : ?", options: ["page", "text", "document", "citation", "note"], correct: 2 }, ];