Difficulty: Easy
Correct Answer: 21
Explanation:
Introduction / Context:
If a person is the k-th from both ends in a single row, the total number is 2k − 1 because the person is counted twice when simply adding.
Given Data / Assumptions:
Concept / Approach:
Total N = 2 * 11 − 1.
Step-by-Step Solution:
Verification / Alternative check:
Positions from both ends sum to N + 1 ⇒ 11 + 11 = 22 = N + 1 ⇒ N = 21.
Why Other Options Are Wrong:
Common Pitfalls:
Forgetting to subtract 1 after doubling.
Final Answer:
21
Discussion & Comments