Difficulty: Medium
Correct Answer: 8
Explanation:
Introduction / Context:This is a ranks-in-queue problem. We are given absolute positions for two people and told a third is “in between” them. Typical exam convention interprets “in between” as the midpoint when discrete answer choices suggest a unique count.
Given Data / Assumptions:
Concept / Approach:Number between Vijay and Jack = (32 - 14 - 1) = 17. If Mary is exactly in the middle between them (a standard interpretation to yield a single answer), the gap from Vijay to Mary equals floor(17/2) = 8.
Step-by-Step Solution:
Convert Jack’s position: 48 - 17 + 1 = 32.Count between ends: 32 - 14 - 1 = 17.Mary at the middle ⇒ persons between Vijay and Mary = 8.Verification / Alternative check:With an odd count (17), the middle is 8 persons from either side, placing Mary uniquely.
Why Other Options Are Wrong:7/6/5 would not center Mary between 14th and 32nd with an odd interspace length.
Common Pitfalls:Assuming “in between” merely means somewhere between (non-unique). Exam patterns usually imply midpoint when discrete answers are provided.
Final Answer:8
Discussion & Comments