// Analogies Set 11 — answer key // correct index is 0-based: A=0, B=1, C=2, D=3, E=4 const QUESTIONS = [ { question: "beak : bird = snout : ?", options: ["pig", "nose", "smell", "animal", "face"], correct: 0 }, { question: "archive : documents = museum : ?", options: ["visit", "history", "artefacts", "art", "gallery"], correct: 2 }, { question: "drought : parched = flood : ?", options: ["river", "rain", "inundated", "water", "dam"], correct: 2 }, { question: "perjury : oath = fraud : ?", options: ["crime", "money", "trust", "law", "deception"], correct: 2 }, { question: "anvil : blacksmith = easel : ?", options: ["canvas", "paint", "artist", "brush", "gallery"], correct: 2 }, { question: "nocturnal : night = diurnal : ?", options: ["day", "light", "active", "sleep", "sun"], correct: 0 }, { question: "caterpillar : butterfly = tadpole : ?", options: ["pond", "swim", "frog", "egg", "spawn"], correct: 2 }, { question: "circumference : circle = perimeter : ?", options: ["area", "square", "length", "border", "side"], correct: 1 }, { question: "treaty : nations = contract : ?", options: ["law", "parties", "sign", "agree", "court"], correct: 1 }, { question: "helm : steer = bellows : ?", options: ["fire", "blow", "forge", "air", "smith"], correct: 1 }, { question: "tepee : nomad = igloo : ?", options: ["snow", "arctic", "inuit", "cold", "ice"], correct: 2 }, { question: "nectar : flower = sap : ?", options: ["tree", "sweet", "syrup", "bark", "root"], correct: 0 }, { question: "oration : speech = sonnet : ?", options: ["music", "poem", "verse", "rhyme", "lyric"], correct: 1 }, { question: "tutor : student = mentor : ?", options: ["wisdom", "guide", "protégé", "teach", "learn"], correct: 2 }, { question: "fable : moral = parable : ?", options: ["story", "lesson", "bible", "truth", "religion"], correct: 1 }, { question: "cartilage : ear = cornea : ?", options: ["pupil", "eye", "sight", "lens", "retina"], correct: 1 }, { question: "sceptic : doubt = cynic : ?", options: ["trust", "belief", "mistrust", "argue", "debate"], correct: 2 }, { question: "fresco : wall = mosaic : ?", options: ["tile", "colour", "floor", "art", "pattern"], correct: 2 }, { question: "pollen : bee = nectar : ?", options: ["flower", "hummingbird", "sweet", "sugar", "honey"], correct: 1 }, { question: "summit : mountain = apex : ?", options: ["triangle", "top", "height", "peak", "pyramid"], correct: 3 }, { question: "fossil : bone = relic : ?", options: ["ancient", "museum", "past", "artefact", "history"], correct: 3 }, { question: "overture : symphony = prelude : ?", options: ["music", "fugue", "piano", "composition", "concert"], correct: 1 }, { question: "census : population = inventory : ?", options: ["count", "stock", "store", "list", "supply"], correct: 1 }, { question: "hermit : solitude = pilgrim : ?", options: ["holy", "journey", "temple", "faith", "travel"], correct: 1 }, { question: "stanza : poem = movement : ?", options: ["dance", "symphony", "music", "rhythm", "beat"], correct: 1 }, { question: "amnesia : memory = blindness : ?", options: ["dark", "see", "sight", "eye", "vision"], correct: 2 }, { question: "peninsula : land = bay : ?", options: ["coast", "inlet", "sea", "water", "harbour"], correct: 1 }, { question: "barometer : pressure = seismograph : ?", options: ["wave", "earthquake", "tremor", "ground", "fault"], correct: 1 }, { question: "parliament : laws = court : ?", options: ["judge", "verdicts", "trial", "lawyer", "justice"], correct: 1 }, { question: "varnish : wood = glaze : ?", options: ["pottery", "glass", "paint", "surface", "coat"], correct: 0 }, { question: "hibernation : winter = migration : ?", options: ["birds", "season", "travel", "summer", "warmth"], correct: 1 }, { question: "telescope : distant = microscope : ?", options: ["small", "lens", "science", "tiny", "magnify"], correct: 0 }, { question: "calligraphy : writing = origami : ?", options: ["paper", "folding", "japan", "art", "craft"], correct: 1 }, { question: "enamel : tooth = shell : ?", options: ["egg", "protect", "hard", "mollusc", "ocean"], correct: 3 }, { question: "drought : reservoir = famine : ?", options: ["crops", "food", "hunger", "granary", "supply"], correct: 3 }, { question: "quorum : meeting = jury : ?", options: ["verdict", "court", "trial", "judge", "law"], correct: 1 }, { question: "overture : opera = pilot episode : ?", options: ["film", "television", "cinema", "broadcast", "season"], correct: 1 }, { question: "ballast : ship = counterweight : ?", options: ["scale", "crane", "balance", "heavy", "lift"], correct: 1 }, { question: "compass : direction = sundial : ?", options: ["shadow", "time", "sun", "noon", "hour"], correct: 1 }, { question: "hypothesis : test = theory : ?", options: ["fact", "prove", "idea", "verify", "science"], correct: 3 }, ];