Difficulty: Easy
Correct Answer: D
Explanation:
Introduction / Context:
This is a single-rule cyclic alphabet progression. Each term is obtained from the previous one by adding a fixed step size with wrap-around at Z. Detecting that constant step gives the immediate next letter.
Given Data / Assumptions:
Concept / Approach:
Compute forward steps between consecutive letters using modular arithmetic. If the step remains constant, apply it once more to the last letter to get the answer.
Step-by-Step Solution:
U(21) → B(2): forward step = +7 (since 21 + 7 = 28 → 2 after wrapping by 26).B(2) → I(9): +7.I(9) → P(16): +7.P(16) → W(23): +7.Therefore apply +7 again: W(23) + 7 = 30 → 4 = D.
Verification / Alternative check:
Every gap is consistently +7 modulo 26. The pattern is linear and unambiguous, so the next letter must be D.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
D
Discussion & Comments