Difficulty: Hard
Correct Answer: A
Explanation:
Introduction / Context:
Circular seating with inward-facing people inverts left/right relative to linear seating. We must first construct a valid initial circle, then perform two swaps and finally report who is to the left (clockwise neighbor) of D.
Given Data / Assumptions:
Concept / Approach:
Use inward-facing convention: immediate right = counterclockwise neighbor; immediate left = clockwise neighbor. Build one consistent clockwise order, then execute swaps.
Step-by-Step Solution:
A valid initial clockwise order is: D, C, B, E, F, A.Check: A opposite B (A at index 5, B at index 2) — yes; B right of E and left of C — yes; C left of D — yes; F right of A — yes.Swap D with F ⇒ F, C, B, E, D, A.Swap E with B ⇒ F, C, E, B, D, A.Left of D means D’s clockwise neighbor: that is A.
Verification / Alternative check:
Rotations/reflections of the same structure yield the same final “left of D”.
Why Other Options Are Wrong:
They correspond to other neighbors pre-swap or misinterpret left/right for inward-facing circles.
Common Pitfalls:
Applying classroom left/right instead of inward-facing convention.
Final Answer:
A
Discussion & Comments