Difficulty: Medium
Correct Answer: 5 Km. towards South
Explanation:
Introduction / Context:
This path-tracking problem mixes absolute placements (D relative to A) with the bus’s movement segments. Converting the description into coordinates clarifies the final short leg required to reach D.
Given Data / Assumptions:
Concept / Approach:
Use a coordinate frame with A at (0,0). Track each move and compare the final stop with D’s coordinate. The last required move is simply the vertical difference between the stop and D.
Step-by-Step Solution:
Verification / Alternative check:
Plot the points: the final x matches D exactly (13); only y differs by +5.
Why Other Options Are Wrong:
Common Pitfalls:
Forgetting that a right turn from North leads to East; swapping axes signs.
Final Answer:
5 Km. towards South
Discussion & Comments