// Analogies Set 2 — answer key // correct index is 0-based: A=0, B=1, C=2, D=3, E=4 const QUESTIONS = [ { question: "bark : tree = skin : ?", options: ["soft", "body", "person", "touch", "organ"], correct: 2 }, { question: "ceiling : floor = top : ?", options: ["bottom", "high", "roof", "above", "wall"], correct: 0 }, { question: "lion : pride = wolf : ?", options: ["howl", "forest", "pack", "fur", "wild"], correct: 2 }, { question: "needle : sew = pen : ?", options: ["ink", "paper", "write", "pencil", "cap"], correct: 2 }, { question: "Monday : Tuesday = March : ?", options: ["month", "April", "February", "spring", "week"], correct: 1 }, { question: "ocean : wave = desert : ?", options: ["hot", "sand", "cactus", "dune", "dry"], correct: 3 }, { question: "cow : beef = pig : ?", options: ["farm", "bacon", "pork", "mud", "fat"], correct: 2 }, { question: "telescope : star = microscope : ?", options: ["lens", "lab", "small", "cell", "zoom"], correct: 3 }, { question: "helmet : head = shield : ?", options: ["sword", "knight", "body", "metal", "fight"], correct: 2 }, { question: "song : singer = painting : ?", options: ["canvas", "museum", "color", "painter", "art"], correct: 3 }, { question: "cub : bear = calf : ?", options: ["leg", "cow", "farm", "milk", "young"], correct: 1 }, { question: "feather : light = stone : ?", options: ["rock", "throw", "hard", "heavy", "gray"], correct: 3 }, { question: "arrow : bow = bullet : ?", options: ["war", "gun", "fast", "metal", "target"], correct: 1 }, { question: "drought : rain = famine : ?", options: ["hunger", "food", "death", "poor", "war"], correct: 1 }, { question: "soap : clean = eraser : ?", options: ["rubber", "pencil", "remove", "desk", "white"], correct: 2 }, { question: "lens : camera = blade : ?", options: ["sharp", "cut", "knife", "steel", "handle"], correct: 2 }, { question: "bouquet : flower = fleet : ?", options: ["fast", "navy", "water", "ship", "admiral"], correct: 3 }, { question: "letter : word = word : ?", options: ["speak", "sentence", "language", "meaning", "book"], correct: 1 }, { question: "gills : fish = lungs : ?", options: ["breathe", "air", "chest", "human", "oxygen"], correct: 3 }, { question: "planet : orbit = electron : ?", options: ["atom", "charge", "shell", "small", "proton"], correct: 2 }, { question: "frame : picture = border : ?", options: ["edge", "line", "country", "fence", "map"], correct: 2 }, { question: "grain : silo = water : ?", options: ["lake", "reservoir", "wet", "pipe", "drink"], correct: 1 }, { question: "peel : banana = shell : ?", options: ["beach", "hard", "egg", "ocean", "crack"], correct: 2 }, { question: "maple : tree = rose : ?", options: ["red", "thorn", "garden", "flower", "smell"], correct: 3 }, { question: "patient : hospital = prisoner : ?", options: ["crime", "court", "cell", "prison", "guard"], correct: 3 }, { question: "oar : rowboat = pedal : ?", options: ["foot", "bicycle", "wheel", "ride", "push"], correct: 1 }, { question: "taste : tongue = smell : ?", options: ["nose", "flower", "scent", "air", "perfume"], correct: 0 }, { question: "flock : sheep = swarm : ?", options: ["fly", "bees", "many", "buzz", "honey"], correct: 1 }, { question: "volcano : eruption = earthquake : ?", options: ["ground", "shake", "tremor", "fault", "disaster"], correct: 2 }, { question: "carpenter : wood = mason : ?", options: ["jar", "stone", "build", "wall", "cement"], correct: 1 }, { question: "chapter : novel = act : ?", options: ["play", "perform", "scene", "stage", "drama"], correct: 0 }, { question: "shallow : deep = narrow : ?", options: ["thin", "wide", "long", "small", "short"], correct: 1 }, { question: "thirsty : drink = curious : ?", options: ["ask", "learn", "wonder", "know", "explore"], correct: 0 }, { question: "summit : mountain = peak : ?", options: ["high", "top", "career", "climb", "snow"], correct: 2 }, { question: "wool : knit = clay : ?", options: ["mud", "wet", "pot", "mold", "earth"], correct: 3 }, { question: "root : tree = foundation : ?", options: ["base", "building", "concrete", "ground", "deep"], correct: 1 }, { question: "glove : hand = helmet : ?", options: ["hard", "bike", "head", "soldier", "safety"], correct: 2 }, { question: "sandpaper : smooth = detergent : ?", options: ["wash", "soap", "clean", "water", "chemical"], correct: 2 }, { question: "minute : hour = day : ?", options: ["time", "night", "week", "date", "calendar"], correct: 2 }, { question: "student : learn = athlete : ?", options: ["sport", "run", "train", "strong", "medal"], correct: 2 }, ];