Difficulty: Easy
Correct Answer: M
Explanation:
Introduction / Context:
Letter-shift questions move a fixed number of places to the left (towards A) or right (towards Z). Here we shift 5 places to the left starting from R.
Given Data / Assumptions:
Concept / Approach:
Find the left index of R, then move left by 5 positions and identify the resulting letter.
Step-by-Step Solution:
Verification / Alternative check:
Counting stepwise: R(0), Q(1), P(2), O(3), N(4), M(5). Lands on M.
Why Other Options Are Wrong:
They are at different offsets from R (e.g., N is 4 left; T is to the right of R, etc.).
Common Pitfalls:
Moving in the wrong direction (right instead of left) or miscounting by one.
Final Answer:
M
Discussion & Comments