// Analogies Set 5 — answer key // correct index is 0-based: A=0, B=1, C=2, D=3, E=4 const QUESTIONS = [ { question: "lens : eye = filter : ?", options: ["coffee", "water", "screen", "camera", "clean"], correct: 3 }, { question: "wave : ocean = ripple : ?", options: ["water", "pond", "small", "stone", "circle"], correct: 1 }, { question: "portrait : face = landscape : ?", options: ["scenery", "painting", "green", "mountain", "art"], correct: 0 }, { question: "skeleton : body = frame : ?", options: ["picture", "door", "building", "wood", "metal"], correct: 2 }, { question: "evaporate : liquid = melt : ?", options: ["hot", "ice", "solid", "water", "heat"], correct: 2 }, { question: "glue : stick = magnet : ?", options: ["iron", "attract", "metal", "pole", "fridge"], correct: 1 }, { question: "prologue : epilogue = introduction : ?", options: ["book", "conclusion", "end", "chapter", "start"], correct: 1 }, { question: "thermometer : temperature = barometer : ?", options: ["weather", "pressure", "rain", "mercury", "wind"], correct: 1 }, { question: "attic : basement = roof : ?", options: ["house", "floor", "tile", "foundation", "ceiling"], correct: 3 }, { question: "librarian : book = pharmacist : ?", options: ["medicine", "doctor", "store", "health", "pill"], correct: 0 }, { question: "stem : flower = trunk : ?", options: ["elephant", "car", "wood", "tree", "bark"], correct: 3 }, { question: "butter : bread = sauce : ?", options: ["cook", "tomato", "pasta", "red", "pour"], correct: 2 }, { question: "fuse : circuit = valve : ?", options: ["pipe", "heart", "open", "tube", "metal"], correct: 0 }, { question: "lace : shoe = belt : ?", options: ["leather", "buckle", "pants", "waist", "brown"], correct: 2 }, { question: "wax : candle = ink : ?", options: ["pen", "write", "black", "paper", "stain"], correct: 0 }, { question: "mane : horse = crest : ?", options: ["wave", "rooster", "top", "hill", "badge"], correct: 1 }, { question: "sand : beach = snow : ?", options: ["cold", "white", "mountain", "winter", "ski"], correct: 2 }, { question: "conductor : orchestra = director : ?", options: ["movie", "manage", "board", "boss", "stage"], correct: 0 }, { question: "judge : courtroom = referee : ?", options: ["whistle", "game", "field", "sport", "foul"], correct: 2 }, { question: "page : turn = door : ?", options: ["knob", "close", "open", "room", "lock"], correct: 2 }, { question: "recipe : cook = pattern : ?", options: ["fabric", "repeat", "design", "tailor", "shape"], correct: 3 }, { question: "blade : knife = bristle : ?", options: ["hair", "brush", "stiff", "paint", "clean"], correct: 1 }, { question: "iron : wrinkle = soap : ?", options: ["wash", "bubble", "dirt", "water", "hand"], correct: 2 }, { question: "chapter : verse = act : ?", options: ["play", "perform", "scene", "drama", "stage"], correct: 2 }, { question: "tide : moon = season : ?", options: ["weather", "earth", "tilt", "year", "change"], correct: 2 }, { question: "sting : bee = bite : ?", options: ["pain", "mosquito", "eat", "tooth", "apple"], correct: 1 }, { question: "diploma : graduate = medal : ?", options: ["gold", "winner", "sport", "neck", "award"], correct: 1 }, { question: "shoal : fish = colony : ?", options: ["ant", "country", "settle", "people", "British"], correct: 0 }, { question: "sketch : painting = outline : ?", options: ["draw", "pen", "essay", "shape", "border"], correct: 2 }, { question: "anchor : ship = brake : ?", options: ["stop", "car", "pedal", "slow", "tire"], correct: 1 }, { question: "pupil : eye = pane : ?", options: ["glass", "window", "pain", "clear", "frame"], correct: 1 }, { question: "ore : metal = grape : ?", options: ["vine", "fruit", "wine", "purple", "juice"], correct: 2 }, { question: "necklace : neck = bracelet : ?", options: ["gold", "jewel", "wrist", "ring", "chain"], correct: 2 }, { question: "receipt : purchase = ticket : ?", options: ["movie", "travel", "seat", "entry", "price"], correct: 3 }, { question: "choir : sing = troupe : ?", options: ["group", "dance", "perform", "circus", "act"], correct: 2 }, { question: "prism : light = sieve : ?", options: ["flour", "grain", "hole", "filter", "mesh"], correct: 1 }, { question: "palette : painter = toolkit : ?", options: ["box", "wrench", "fix", "mechanic", "hammer"], correct: 3 }, { question: "crater : volcano = delta : ?", options: ["river", "triangle", "water", "mud", "Greek"], correct: 0 }, { question: "gauge : measure = alarm : ?", options: ["clock", "loud", "warn", "fire", "ring"], correct: 2 }, { question: "peak : valley = crest : ?", options: ["wave", "trough", "hill", "top", "bird"], correct: 1 }, ];