// Analogies Set 1 — answer key // correct index is 0-based: A=0, B=1, C=2, D=3, E=4 const QUESTIONS = [ { question: "hot : cold = big : ?", options: ["warm", "huge", "small", "tall", "heavy"], correct: 2 }, { question: "fish : swim = bird : ?", options: ["walk", "fly", "seagull", "dive", "crawl"], correct: 1 }, { question: "eye : see = ear : ?", options: ["nose", "sound", "hear", "face", "loud"], correct: 2 }, { question: "day : night = summer : ?", options: ["spring", "hot", "winter", "cold", "sun"], correct: 2 }, { question: "painter : brush = writer : ?", options: ["book", "pen", "story", "desk", "paper"], correct: 1 }, { question: "dog : puppy = cat : ?", options: ["pet", "fur", "kitten", "mouse", "meow"], correct: 2 }, { question: "hand : glove = foot : ?", options: ["toe", "shoe", "leg", "sock", "walk"], correct: 1 }, { question: "tree : leaf = flower : ?", options: ["garden", "stem", "petal", "root", "bee"], correct: 2 }, { question: "doctor : patient = teacher : ?", options: ["school", "book", "student", "lesson", "chalk"], correct: 2 }, { question: "hungry : eat = tired : ?", options: ["run", "sleep", "food", "yawn", "awake"], correct: 1 }, { question: "car : road = boat : ?", options: ["sail", "anchor", "water", "fish", "dock"], correct: 2 }, { question: "happy : sad = up : ?", options: ["sky", "high", "down", "over", "above"], correct: 2 }, { question: "clock : time = thermometer : ?", options: ["heat", "mercury", "weather", "temperature", "cold"], correct: 3 }, { question: "spider : web = bee : ?", options: ["honey", "sting", "hive", "fly", "flower"], correct: 2 }, { question: "bread : bakery = medicine : ?", options: ["doctor", "pharmacy", "hospital", "pill", "sick"], correct: 1 }, { question: "key : lock = password : ?", options: ["computer", "hack", "account", "secret", "type"], correct: 2 }, { question: "chapter : book = scene : ?", options: ["movie", "actor", "camera", "stage", "script"], correct: 0 }, { question: "square : four = triangle : ?", options: ["shape", "circle", "three", "angle", "five"], correct: 2 }, { question: "rain : umbrella = cold : ?", options: ["snow", "ice", "coat", "winter", "shiver"], correct: 2 }, { question: "finger : hand = toe : ?", options: ["shoe", "nail", "leg", "foot", "walk"], correct: 3 }, { question: "milk : cow = egg : ?", options: ["chicken", "nest", "shell", "breakfast", "farm"], correct: 0 }, { question: "knife : cut = hammer : ?", options: ["tool", "nail", "pound", "heavy", "build"], correct: 2 }, { question: "slow : fast = weak : ?", options: ["thin", "muscle", "strong", "power", "heavy"], correct: 2 }, { question: "moon : night = sun : ?", options: ["hot", "star", "day", "light", "sky"], correct: 2 }, { question: "king : queen = prince : ?", options: ["royal", "crown", "castle", "princess", "knight"], correct: 3 }, { question: "page : book = brick : ?", options: ["house", "wall", "cement", "red", "heavy"], correct: 1 }, { question: "wool : sheep = silk : ?", options: ["dress", "smooth", "fabric", "silkworm", "thread"], correct: 3 }, { question: "pilot : airplane = captain : ?", options: ["army", "hat", "ship", "sea", "crew"], correct: 2 }, { question: "pupil : school = soldier : ?", options: ["army", "gun", "war", "uniform", "fight"], correct: 0 }, { question: "ankle : leg = wrist : ?", options: ["hand", "arm", "watch", "finger", "bone"], correct: 1 }, { question: "flour : bread = grape : ?", options: ["fruit", "vine", "wine", "purple", "juice"], correct: 2 }, { question: "laugh : happy = cry : ?", options: ["tear", "sad", "baby", "eye", "loud"], correct: 1 }, { question: "nest : bird = den : ?", options: ["cave", "fox", "dark", "hole", "forest"], correct: 1 }, { question: "ice : water = water : ?", options: ["liquid", "wet", "steam", "river", "drink"], correct: 2 }, { question: "composer : symphony = author : ?", options: ["writer", "pen", "novel", "read", "library"], correct: 2 }, { question: "inch : foot = month : ?", options: ["week", "year", "day", "time", "calendar"], correct: 1 }, { question: "paw : cat = hoof : ?", options: ["shoe", "horse", "farm", "run", "leg"], correct: 1 }, { question: "seed : plant = egg : ?", options: ["hen", "nest", "bird", "shell", "hatch"], correct: 2 }, { question: "steering wheel : car = handlebar : ?", options: ["bike", "bar", "ride", "wheel", "pedal"], correct: 0 }, { question: "dry : wet = clean : ?", options: ["wash", "soap", "dirty", "water", "pure"], correct: 2 }, ];