Difficulty: Easy
Correct Answer: 4, 1, 5, 2, 3
Explanation:
Introduction / Context:
Alphabetical-order problems require comparing words letter by letter (lexicographic order). With all words starting with Z, you must move to the next letters and continue until a difference appears. Hyphens are typically ignored for ordering in such exam questions; treat “Zig-zag” as “Zigzag.”
Given Data / Assumptions:
Concept / Approach:
Compare based on the second, third, etc., letters after the initial Z, following standard dictionary rules.
Step-by-Step Solution:
Compare “Zenith” vs “Zephyr”: at third letter, “n” (110) < “p” (112) ⇒ Zenith precedes Zephyr.“Zigzag” starts with “Zi”, and “i” comes after “e”, so words with “Ze” come first.Among the remaining “Zo…” words: “Zodiac” (Zod…) comes before “Zoonomy” (Zoo…).Final alphabetical order: Zenith → Zephyr → Zig-zag → Zodiac → Zoonomy.Map back to indices: 4, 1, 5, 2, 3.
Verification / Alternative check:
Quick scan by second letters: e, e, i, o, o; within each letter group, compare next positions to confirm final order.
Why Other Options Are Wrong:
Common Pitfalls:
Being distracted by the hyphen in “Zig-zag” or comparing only the second letter without resolving ties at later letters.
Final Answer:
4, 1, 5, 2, 3
Discussion & Comments