Difficulty: Easy
Correct Answer: South
Explanation:
Introduction / Context:
This is a basic direction-sense problem involving two right turns and equal backtracking in the north–south axis.
Given Data / Assumptions:
Concept / Approach:
Use a simple x–y grid. North = +y, East = +x, South = −y, West = −x. Track both orientation and displacement.
Step-by-Step Solution:
1) After 2 km North, face North.2) Right turn → face East; move 1 km.3) Right turn → face South; move 2 km.4) Final heading is the direction of the last leg.
Verification / Alternative check:
Diagramming a simple L-shape returning southward confirms the final facing is South.
Why Other Options Are Wrong:
North/East/West do not match the direction of the last segment after the second right turn.
Common Pitfalls:
Mistaking position (where) for facing (direction of travel). We are asked for facing at the end.
Final Answer:
South
Discussion & Comments