Difficulty: Easy
Correct Answer: East
Explanation:
Introduction / Context:
This is a classic direction-sense problem that checks whether you can mentally track turns and headings on a simple grid. You begin with an initial facing, then apply left/right rotations to determine the final direction.
Given Data / Assumptions:
Concept / Approach:
Turning left or right changes facing by 90 degrees relative to the current heading. The path length after the final turn does not affect the heading itself. Keeping a small compass sketch in mind (or on paper) helps.
Step-by-Step Solution:
Verification / Alternative check:
You can encode directions as ordered pairs or as a cycle (N → E → S → W). From East, a left turn goes to North; from North, a right turn returns to East.
Why Other Options Are Wrong:
Common Pitfalls:
Confusing left/right with respect to the original start facing. Each turn is relative to the current direction.
Final Answer:
East
Discussion & Comments