Difficulty: Easy
Correct Answer: 10th
Explanation:
Introduction / Context:
Middle-position questions rely on recognizing that in a row of 25, the middle is the 13th position from either end. Shifts then let you back-calculate the original rank.
Given Data / Assumptions:
Concept / Approach:
Middle index for odd N is (N + 1) / 2 = 13. If final = original + 3 (to the right), then original = final - 3.
Step-by-Step Solution:
Verification / Alternative check:
Simulate: If Rahul starts at 10th from the left, moving three right lands him at 13th. Correct.
Why Other Options Are Wrong:
Common Pitfalls:
Thinking the center of 25 is 12th or 12.5th; always use (N+1)/2 for odd N.
Final Answer:
10th
Discussion & Comments