Difficulty: Medium
Correct Answer: 27th
Explanation:
Introduction / Context:
This is a classic rank-and-position problem. You relate “from left” and “from right” positions via the total count, then apply a swap to infer the new ranks. The trick is to deduce the total number of boys first.
Given Data / Assumptions:
Concept / Approach:
For a line of length n, if a person is r-th from the right, their rank from left is n - r + 1. Swapping exchanges seats (positions), so post-swap ranks equal the partner’s original seat coordinates.
Step-by-Step Solution:
Verification / Alternative check:
List left ranks for both initially: Suraj 10th; Rajan (from left) = 27th. Swap them: they simply exchange these left ranks (10 ↔ 27). Then convert Rajan’s new left rank (10) into right rank: 27. Consistent.
Why Other Options Are Wrong:
Common Pitfalls:
Forgetting the +1 in the conversion (n - left + 1 or n - right + 1), or assuming n = 35 by mistake.
Final Answer:
27th
Discussion & Comments