// Analogies Set 4 — answer key // correct index is 0-based: A=0, B=1, C=2, D=3, E=4 const QUESTIONS = [ { question: "oxygen : breathe = food : ?", options: ["cook", "eat", "plate", "kitchen", "hungry"], correct: 1 }, { question: "sail : wind = waterwheel : ?", options: ["river", "mill", "current", "spin", "wood"], correct: 2 }, { question: "scalpel : surgeon = chisel : ?", options: ["wood", "sculptor", "hammer", "sharp", "carve"], correct: 1 }, { question: "ancient : modern = stale : ?", options: ["old", "bread", "fresh", "new", "moldy"], correct: 2 }, { question: "canvas : painter = stage : ?", options: ["actor", "curtain", "play", "audience", "light"], correct: 0 }, { question: "shore : ocean = bank : ?", options: ["money", "save", "river", "loan", "building"], correct: 2 }, { question: "chimney : smoke = pipe : ?", options: ["tobacco", "water", "metal", "round", "plumber"], correct: 1 }, { question: "captain : ship = CEO : ?", options: ["money", "boss", "company", "office", "suit"], correct: 2 }, { question: "pedal : bicycle = key : ?", options: ["lock", "door", "piano", "ring", "metal"], correct: 2 }, { question: "constellation : stars = archipelago : ?", options: ["ocean", "water", "islands", "map", "tropical"], correct: 2 }, { question: "cliff : fall = current : ?", options: ["water", "electric", "drown", "river", "flow"], correct: 2 }, { question: "diary : personal = newspaper : ?", options: ["print", "paper", "public", "read", "daily"], correct: 2 }, { question: "second : minute = centimeter : ?", options: ["ruler", "meter", "length", "inch", "small"], correct: 1 }, { question: "acorn : oak = seed : ?", options: ["grow", "soil", "plant", "water", "root"], correct: 2 }, { question: "famine : starvation = drought : ?", options: ["rain", "dehydration", "desert", "dry", "heat"], correct: 1 }, { question: "shovel : dig = saw : ?", options: ["tool", "blade", "wood", "cut", "sharp"], correct: 3 }, { question: "album : photo = anthology : ?", options: ["book", "story", "author", "poem", "library"], correct: 1 }, { question: "bitter : taste = shrill : ?", options: ["loud", "high", "sound", "ear", "scream"], correct: 2 }, { question: "sculpture : chisel = painting : ?", options: ["brush", "canvas", "color", "museum", "artist"], correct: 0 }, { question: "wing : bird = fin : ?", options: ["water", "swim", "shark", "fish", "ocean"], correct: 3 }, { question: "audience : theater = congregation : ?", options: ["priest", "church", "pray", "religion", "sing"], correct: 1 }, { question: "compass : direction = scale : ?", options: ["fish", "balance", "weight", "heavy", "measure"], correct: 2 }, { question: "calf : cow = lamb : ?", options: ["wool", "meat", "farm", "sheep", "young"], correct: 3 }, { question: "silence : noise = darkness : ?", options: ["night", "black", "light", "fear", "shadow"], correct: 2 }, { question: "water : pipe = electricity : ?", options: ["shock", "wire", "power", "light", "plug"], correct: 1 }, { question: "kitchen : cook = workshop : ?", options: ["build", "tool", "hammer", "wood", "factory"], correct: 0 }, { question: "chapter : book = episode : ?", options: ["show", "series", "TV", "watch", "season"], correct: 1 }, { question: "pebble : boulder = stream : ?", options: ["water", "river", "flow", "small", "fish"], correct: 1 }, { question: "stethoscope : doctor = wrench : ?", options: ["tool", "turn", "pipe", "mechanic", "metal"], correct: 3 }, { question: "warm : hot = cool : ?", options: ["cold", "nice", "breeze", "winter", "ice"], correct: 0 }, { question: "director : film = architect : ?", options: ["house", "building", "design", "plan", "draw"], correct: 1 }, { question: "mouse : cat = fly : ?", options: ["buzz", "wing", "spider", "insect", "air"], correct: 2 }, { question: "rung : ladder = step : ?", options: ["walk", "foot", "staircase", "climb", "floor"], correct: 2 }, { question: "petal : flower = key : ?", options: ["lock", "door", "keyboard", "type", "open"], correct: 2 }, { question: "whisper : shout = drizzle : ?", options: ["rain", "wet", "downpour", "cloud", "storm"], correct: 2 }, { question: "orbit : planet = route : ?", options: ["road", "map", "bus", "drive", "travel"], correct: 2 }, { question: "cocoon : butterfly = chrysalis : ?", options: ["silk", "moth", "insect", "wing", "larva"], correct: 1 }, { question: "trunk : elephant = beak : ?", options: ["bird", "peck", "feather", "sharp", "nest"], correct: 0 }, { question: "flock : bird = herd : ?", options: ["sheep", "cattle", "many", "ranch", "grass"], correct: 1 }, { question: "author : write = chef : ?", options: ["food", "cook", "kitchen", "hat", "recipe"], correct: 1 }, ];