// Analogies Set 9 — answer key // correct index is 0-based: A=0, B=1, C=2, D=3, E=4 const QUESTIONS = [ { question: "architect : building = sculptor : ?", options: ["clay", "museum", "statue", "tool", "paint"], correct: 2 }, { question: "tepid : hot = pale : ?", options: ["colour", "bright", "vivid", "light", "faint"], correct: 2 }, { question: "surgeon : scalpel = painter : ?", options: ["canvas", "colour", "brush", "studio", "art"], correct: 2 }, { question: "acorn : oak = egg : ?", options: ["nest", "shell", "bird", "hatch", "feather"], correct: 2 }, { question: "flock : sheep = pack : ?", options: ["bag", "wolves", "cards", "ice", "run"], correct: 1 }, { question: "stethoscope : doctor = gavel : ?", options: ["court", "judge", "law", "verdict", "bang"], correct: 1 }, { question: "petal : flower = scale : ?", options: ["weight", "music", "fish", "measure", "tip"], correct: 2 }, { question: "lagoon : sea = pond : ?", options: ["duck", "lake", "water", "fish", "reed"], correct: 1 }, { question: "mane : lion = quill : ?", options: ["pen", "porcupine", "ink", "write", "spine"], correct: 1 }, { question: "chapter : novel = scene : ?", options: ["play", "movie", "act", "stage", "camera"], correct: 0 }, { question: "hibernation : bear = dormancy : ?", options: ["seed", "winter", "sleep", "cold", "plant"], correct: 0 }, { question: "rudder : ship = tail fin : ?", options: ["fish", "aircraft", "swim", "steer", "wing"], correct: 1 }, { question: "cartographer : map = choreographer : ?", options: ["dance", "music", "stage", "move", "rhythm"], correct: 0 }, { question: "galaxy : universe = cell : ?", options: ["wall", "organism", "nucleus", "divide", "life"], correct: 1 }, { question: "prism : light = filter : ?", options: ["colour", "sound", "water", "lens", "air"], correct: 1 }, { question: "baton : conductor = sceptre : ?", options: ["king", "wand", "power", "throne", "rule"], correct: 0 }, { question: "gravel : pebble = forest : ?", options: ["wood", "tree", "leaf", "path", "green"], correct: 1 }, { question: "marathon : endurance = sprint : ?", options: ["fast", "speed", "race", "track", "time"], correct: 1 }, { question: "angler : fish = trapper : ?", options: ["net", "cage", "animal", "fur", "hunt"], correct: 2 }, { question: "knot : rope = weld : ?", options: ["heat", "metal", "bond", "join", "torch"], correct: 1 }, { question: "whisper : shout = trickle : ?", options: ["flow", "flood", "drop", "water", "stream"], correct: 1 }, { question: "overture : opera = prologue : ?", options: ["play", "book", "chapter", "intro", "story"], correct: 0 }, { question: "thermometer : temperature = barometer : ?", options: ["weather", "pressure", "altitude", "wind", "humidity"], correct: 1 }, { question: "cub : bear = foal : ?", options: ["cow", "horse", "pony", "donkey", "deer"], correct: 1 }, { question: "pedal : bicycle = oar : ?", options: ["boat", "paddle", "water", "row", "sail"], correct: 0 }, { question: "epilogue : story = finale : ?", options: ["concert", "end", "movie", "play", "song"], correct: 0 }, { question: "monarch : kingdom = admiral : ?", options: ["ship", "navy", "fleet", "rank", "sea"], correct: 2 }, { question: "amplify : sound = magnify : ?", options: ["lens", "image", "size", "glass", "light"], correct: 1 }, { question: "palette : painter = keyboard : ?", options: ["type", "pianist", "music", "computer", "note"], correct: 1 }, { question: "silo : grain = reservoir : ?", options: ["dam", "water", "valve", "pump", "supply"], correct: 1 }, { question: "archipelago : islands = constellation : ?", options: ["sky", "stars", "light", "space", "night"], correct: 1 }, { question: "hem : garment = frame : ?", options: ["border", "picture", "wood", "edge", "hang"], correct: 1 }, { question: "spore : fern = seed : ?", options: ["soil", "plant", "grow", "root", "flower"], correct: 1 }, { question: "soprano : alto = treble : ?", options: ["bass", "note", "pitch", "voice", "choir"], correct: 0 }, { question: "opaque : transparent = rigid : ?", options: ["stiff", "solid", "flexible", "hard", "firm"], correct: 2 }, { question: "autobiography : life = diary : ?", options: ["entry", "day", "private", "events", "person"], correct: 3 }, { question: "periscope : submarine = telescope : ?", options: ["astronomer", "star", "lens", "space", "far"], correct: 0 }, { question: "mortar : pestle = lock : ?", options: ["door", "key", "bolt", "open", "safe"], correct: 1 }, { question: "fuselage : aeroplane = hull : ?", options: ["ship", "boat", "keel", "deck", "water"], correct: 0 }, { question: "synopsis : film = abstract : ?", options: ["art", "paper", "idea", "concept", "theory"], correct: 1 }, ];