Difficulty: Easy
Correct Answer: PU
Explanation:
Introduction / Context:
Letter-pair classifications often rely on a constant positional shift from the first to the second letter. Detecting the uniform step highlights the majority; any deviation becomes the odd one out.
Given Data / Assumptions:
Concept / Approach:
Compute the forward step for each pair and compare. Three pairs should share the same step; one will differ.
Step-by-Step Solution:
G(7) → K(11) = +4.M(13) → Q(17) = +4.S(19) → W(23) = +4.P(16) → U(21) = +5 (different).
Verification / Alternative check:
Reverse-check: subtract the second letter index from the first; only PU yields a +5 step, confirming the anomaly.
Why Other Options Are Wrong:
GK, MQ, SW: Each advances exactly +4 positions, so they fit the majority pattern.
Common Pitfalls:
Wrapping the alphabet unnecessarily (no wrap occurs here) or miscounting inclusive/exclusive steps.
Final Answer:
PU
Discussion & Comments