// Analogies Set 12 — answer key // correct index is 0-based: A=0, B=1, C=2, D=3, E=4 const QUESTIONS = [ { question: "glacier : valley = river : ?", options: ["water", "canyon", "flow", "bank", "delta"], correct: 1 }, { question: "facade : building = veneer : ?", options: ["wood", "surface", "furniture", "coat", "thin"], correct: 2 }, { question: "rook : chess = pawn : ?", options: ["piece", "game", "knight", "checkers", "move"], correct: 0 }, { question: "libel : written = slander : ?", options: ["false", "spoken", "harm", "court", "defame"], correct: 1 }, { question: "curator : museum = warden : ?", options: ["prison", "guard", "watch", "cell", "law"], correct: 0 }, { question: "anthology : poems = compendium : ?", options: ["facts", "books", "texts", "stories", "essays"], correct: 0 }, { question: "prism : spectrum = lens : ?", options: ["magnify", "image", "focus", "glass", "light"], correct: 2 }, { question: "longitude : east-west = latitude : ?", options: ["north-south", "distance", "equator", "map", "degree"], correct: 0 }, { question: "cocoon : silk = nest : ?", options: ["bird", "twig", "egg", "feather", "build"], correct: 1 }, { question: "antidote : venom = vaccine : ?", options: ["injection", "disease", "immunity", "medicine", "virus"], correct: 1 }, { question: "nomad : settle = emigrant : ?", options: ["travel", "return", "foreign", "stay", "migrate"], correct: 1 }, { question: "foliage : tree = plumage : ?", options: ["feather", "bird", "colour", "wing", "fly"], correct: 1 }, { question: "decibel : loudness = celsius : ?", options: ["heat", "cold", "temperature", "freezing", "weather"], correct: 2 }, { question: "rudimentary : basic = paramount : ?", options: ["famous", "supreme", "chief", "important", "key"], correct: 1 }, { question: "keel : boat = spine : ?", options: ["back", "vertebra", "body", "bone", "nerve"], correct: 3 }, { question: "catalyst : reaction = spark : ?", options: ["fire", "ignition", "light", "start", "flame"], correct: 1 }, { question: "amnesty : prisoners = pardon : ?", options: ["crime", "guilt", "offenders", "court", "sentence"], correct: 2 }, { question: "sieve : liquid = filter : ?", options: ["air", "water", "impurities", "clean", "purify"], correct: 2 }, { question: "gorge : eat = guzzle : ?", options: ["drink", "fill", "gulp", "thirst", "liquid"], correct: 0 }, { question: "biography : person = chronicle : ?", options: ["history", "events", "time", "record", "date"], correct: 1 }, { question: "dormant : volcano = latent : ?", options: ["hidden", "talent", "potential", "inactive", "energy"], correct: 2 }, { question: "dam : river = embargo : ?", options: ["trade", "goods", "stop", "ban", "block"], correct: 0 }, { question: "gust : breeze = torrent : ?", options: ["river", "trickle", "flood", "rain", "storm"], correct: 1 }, { question: "mast : flag = pedestal : ?", options: ["base", "statue", "platform", "column", "stand"], correct: 1 }, { question: "carnivore : meat = herbivore : ?", options: ["grass", "plants", "leaves", "vegetables", "hay"], correct: 1 }, { question: "pantomime : gesture = soliloquy : ?", options: ["theatre", "speech", "monologue", "actor", "stage"], correct: 1 }, { question: "mercury : thermometer = compass : ?", options: ["direction", "needle", "north", "navigate", "magnetic"], correct: 1 }, { question: "verse : chorus = chapter : ?", options: ["book", "paragraph", "section", "novel", "page"], correct: 2 }, { question: "erosion : rock = attrition : ?", options: ["wear", "friction", "conflict", "stone", "surface"], correct: 0 }, { question: "podium : oration = stage : ?", options: ["theatre", "performance", "actor", "curtain", "play"], correct: 1 }, { question: "marrow : bone = kernel : ?", options: ["nut", "seed", "core", "fruit", "inner"], correct: 0 }, { question: "archipelago : ocean = oasis : ?", options: ["water", "desert", "palm", "sand", "mirage"], correct: 1 }, { question: "silhouette : outline = caricature : ?", options: ["drawing", "portrait", "exaggeration", "cartoon", "satire"], correct: 2 }, { question: "apprentice : journeyman = novice : ?", options: ["expert", "beginner", "trainee", "student", "amateur"], correct: 0 }, { question: "echo : sound = reflection : ?", options: ["mirror", "light", "image", "water", "glass"], correct: 1 }, { question: "hibernation : metabolism = anaesthesia : ?", options: ["sleep", "consciousness", "pain", "surgery", "medicine"], correct: 1 }, { question: "atlas : geography = almanac : ?", options: ["calendar", "facts", "dates", "annual", "statistics"], correct: 2 }, { question: "stigma : shame = accolade : ?", options: ["reward", "praise", "honour", "award", "recognition"], correct: 2 }, { question: "filibuster : delay = boycott : ?", options: ["protest", "refuse", "strike", "ban", "oppose"], correct: 1 }, { question: "flora : plants = fauna : ?", options: ["animals", "insects", "birds", "wildlife", "nature"], correct: 0 }, ];