// Analogies Set 3 — answer key // correct index is 0-based: A=0, B=1, C=2, D=3, E=4 const QUESTIONS = [ { question: "laugh : joke = applause : ?", options: ["clap", "performance", "loud", "audience", "stage"], correct: 1 }, { question: "elbow : arm = knee : ?", options: ["bend", "cap", "leg", "joint", "foot"], correct: 2 }, { question: "horse : stable = airplane : ?", options: ["sky", "pilot", "hangar", "runway", "fly"], correct: 2 }, { question: "thick : thin = rough : ?", options: ["soft", "smooth", "hard", "bumpy", "flat"], correct: 1 }, { question: "sugar : sweet = lemon : ?", options: ["yellow", "fruit", "sour", "juice", "citrus"], correct: 2 }, { question: "coach : team = conductor : ?", options: ["train", "music", "baton", "orchestra", "ticket"], correct: 3 }, { question: "menu : restaurant = catalog : ?", options: ["book", "order", "store", "list", "page"], correct: 2 }, { question: "whale : mammal = snake : ?", options: ["poison", "long", "reptile", "slither", "scale"], correct: 2 }, { question: "yawn : boredom = blush : ?", options: ["red", "face", "embarrassment", "shy", "cheek"], correct: 2 }, { question: "scissors : cut = broom : ?", options: ["clean", "witch", "dust", "sweep", "floor"], correct: 3 }, { question: "island : ocean = oasis : ?", options: ["water", "palm", "desert", "dry", "sand"], correct: 2 }, { question: "window : glass = tire : ?", options: ["car", "round", "rubber", "road", "wheel"], correct: 2 }, { question: "wick : candle = filament : ?", options: ["wire", "light", "bulb", "glow", "electric"], correct: 2 }, { question: "spoke : wheel = ray : ?", options: ["light", "sun", "beam", "shine", "heat"], correct: 1 }, { question: "curtain : window = lid : ?", options: ["pot", "cover", "open", "close", "top"], correct: 0 }, { question: "mayor : city = principal : ?", options: ["teacher", "rule", "school", "office", "main"], correct: 2 }, { question: "claw : eagle = fang : ?", options: ["tooth", "bite", "snake", "sharp", "poison"], correct: 2 }, { question: "biography : person = history : ?", options: ["past", "book", "nation", "old", "war"], correct: 2 }, { question: "rehearsal : performance = draft : ?", options: ["wind", "write", "essay", "beer", "practice"], correct: 2 }, { question: "dam : river = valve : ?", options: ["pipe", "water", "turn", "open", "metal"], correct: 0 }, { question: "glacier : ice = dune : ?", options: ["desert", "wind", "sand", "beach", "dry"], correct: 2 }, { question: "oven : bake = grill : ?", options: ["cook", "meat", "fire", "roast", "hot"], correct: 3 }, { question: "tadpole : frog = caterpillar : ?", options: ["cocoon", "butterfly", "insect", "leaf", "crawl"], correct: 1 }, { question: "map : territory = blueprint : ?", options: ["plan", "building", "blue", "architect", "paper"], correct: 1 }, { question: "cork : bottle = plug : ?", options: ["electric", "drain", "water", "pull", "hole"], correct: 1 }, { question: "pedestrian : sidewalk = car : ?", options: ["road", "drive", "fast", "tire", "park"], correct: 0 }, { question: "envelope : letter = wallet : ?", options: ["pocket", "leather", "money", "purse", "card"], correct: 2 }, { question: "mercury : thermometer = needle : ?", options: ["thread", "sharp", "sew", "compass", "pin"], correct: 3 }, { question: "pride : lion = school : ?", options: ["learn", "fish", "teacher", "class", "building"], correct: 1 }, { question: "violin : bow = drum : ?", options: ["beat", "loud", "stick", "band", "music"], correct: 2 }, { question: "ignite : fire = plant : ?", options: ["green", "garden", "seed", "tree", "grow"], correct: 3 }, { question: "librarian : library = curator : ?", options: ["art", "museum", "exhibit", "painting", "gallery"], correct: 1 }, { question: "accelerate : speed = inflate : ?", options: ["balloon", "air", "size", "pump", "blow"], correct: 2 }, { question: "stanza : poem = paragraph : ?", options: ["sentence", "write", "essay", "word", "page"], correct: 2 }, { question: "telescope : far = magnifier : ?", options: ["glass", "lens", "small", "big", "read"], correct: 2 }, { question: "hunger : food = thirst : ?", options: ["dry", "drink", "water", "mouth", "hot"], correct: 2 }, { question: "tailor : clothes = cobbler : ?", options: ["leather", "shoes", "foot", "stitch", "sole"], correct: 1 }, { question: "password : security = lock : ?", options: ["key", "door", "safety", "metal", "open"], correct: 2 }, { question: "scales : fish = feathers : ?", options: ["soft", "light", "pillow", "bird", "fly"], correct: 3 }, { question: "engine : car = heart : ?", options: ["love", "beat", "body", "blood", "organ"], correct: 2 }, ];