Difficulty: Medium
Correct Answer: D
Explanation:
Introduction / Context:
With the alphabet written as Z, Y, X, …, A from left to right, “to the right of” now means movement toward the A-end (increasing the index). Correct orientation is crucial. We must find the 7th letter to the right of K in this reversed sequence.
Given Data / Assumptions:
Concept / Approach:
Find K’s reversed index: K is at position 16 in the reversed list. Move 7 positions to the right: 16 + 7 = 23. Position 23 corresponds to D in the reversed lineup above.
Step-by-Step Solution:
Index(K) in reversed = 16.16 + 7 = 23.Letter at reversed position 23 = D.
Verification / Alternative check:
Use the mapping relation between normal and reversed positions: rpos = 27 − pos. For K (normal pos=11), rpos=16. Add 7 → 23. Convert back: normal pos = 27 − 23 = 4 → D. Both methods confirm D.
Why Other Options Are Wrong:
Common Pitfalls:
Moving in the wrong direction because the alphabet is reversed, or forgetting we are counting positions in the reversed sequence, not the normal one.
Final Answer:
D
Discussion & Comments