// Analogies Set 6 — answer key // correct index is 0-based: A=0, B=1, C=2, D=3, E=4 const QUESTIONS = [ { question: "rudder : ship = steering wheel : ?", options: ["drive", "round", "car", "turn", "road"], correct: 2 }, { question: "chapter : index = song : ?", options: ["music", "sing", "playlist", "album", "note"], correct: 2 }, { question: "kennel : dog = stable : ?", options: ["firm", "horse", "barn", "hay", "ride"], correct: 1 }, { question: "sap : tree = blood : ?", options: ["red", "vein", "human", "cut", "cell"], correct: 2 }, { question: "island : bridge = river : ?", options: ["water", "boat", "bank", "bridge", "flow"], correct: 3 }, { question: "dawn : dusk = birth : ?", options: ["baby", "life", "death", "cry", "hospital"], correct: 2 }, { question: "scissors : paper = saw : ?", options: ["tool", "blade", "cut", "wood", "sharp"], correct: 3 }, { question: "pedal : foot = lever : ?", options: ["pull", "lift", "machine", "hand", "bar"], correct: 3 }, { question: "shield : protect = telescope : ?", options: ["lens", "star", "observe", "far", "sky"], correct: 2 }, { question: "frost : cold = sweat : ?", options: ["gym", "work", "heat", "body", "wet"], correct: 2 }, { question: "sketch : detail = summary : ?", options: ["brief", "report", "short", "write", "list"], correct: 1 }, { question: "hive : bee = warren : ?", options: ["dig", "burrow", "rabbit", "hole", "ground"], correct: 2 }, { question: "battery : flashlight = fuel : ?", options: ["gas", "tank", "engine", "oil", "pump"], correct: 2 }, { question: "plumber : pipe = electrician : ?", options: ["shock", "light", "wire", "tool", "power"], correct: 2 }, { question: "mast : sail = pole : ?", options: ["flag", "stick", "tall", "fish", "North"], correct: 0 }, { question: "script : actor = score : ?", options: ["game", "point", "musician", "goal", "number"], correct: 2 }, { question: "reservoir : water = silo : ?", options: ["farm", "grain", "tower", "tall", "store"], correct: 1 }, { question: "constellation : star = chain : ?", options: ["link", "metal", "gold", "prison", "long"], correct: 0 }, { question: "migrate : bird = hibernate : ?", options: ["winter", "cave", "cold", "bear", "sleep"], correct: 3 }, { question: "antler : deer = horn : ?", options: ["car", "goat", "blow", "music", "loud"], correct: 1 }, { question: "verse : chorus = question : ?", options: ["answer", "ask", "mark", "why", "quiz"], correct: 0 }, { question: "rind : cheese = crust : ?", options: ["pie", "bread", "hard", "edge", "toast"], correct: 1 }, { question: "grain : harvest = fish : ?", options: ["water", "catch", "net", "sea", "swim"], correct: 1 }, { question: "uniform : soldier = robe : ?", options: ["silk", "bed", "judge", "cloth", "wear"], correct: 2 }, { question: "lecture : professor = sermon : ?", options: ["church", "priest", "Bible", "Sunday", "preach"], correct: 1 }, { question: "shadow : light = echo : ?", options: ["sound", "cave", "repeat", "loud", "hear"], correct: 0 }, { question: "note : melody = pixel : ?", options: ["screen", "image", "color", "small", "digital"], correct: 1 }, { question: "bay : sea = cove : ?", options: ["coast", "small", "hide", "water", "beach"], correct: 0 }, { question: "easel : painter = workbench : ?", options: ["wood", "tool", "carpenter", "build", "shop"], correct: 2 }, { question: "coil : spring = strand : ?", options: ["hair", "beach", "rope", "thin", "wire"], correct: 2 }, { question: "dimmer : light = thermostat : ?", options: ["wall", "temperature", "dial", "house", "heat"], correct: 1 }, { question: "summit : base = ceiling : ?", options: ["room", "fan", "high", "floor", "wall"], correct: 3 }, { question: "album : song = gallery : ?", options: ["art", "painting", "museum", "walk", "frame"], correct: 1 }, { question: "ladle : soup = tongs : ?", options: ["metal", "fire", "coal", "grip", "hot"], correct: 2 }, { question: "drought : water = blackout : ?", options: ["dark", "power", "night", "light", "candle"], correct: 1 }, { question: "perimeter : area = circumference : ?", options: ["circle", "round", "radius", "diameter", "pi"], correct: 0 }, { question: "calendar : date = clock : ?", options: ["tick", "time", "hand", "round", "wall"], correct: 1 }, { question: "spine : book = backbone : ?", options: ["bone", "body", "strong", "back", "support"], correct: 1 }, { question: "intermission : play = halftime : ?", options: ["score", "break", "game", "sport", "rest"], correct: 2 }, { question: "paddle : canoe = propeller : ?", options: ["blade", "airplane", "spin", "fan", "engine"], correct: 1 }, ];