Grid walk (cardinal turns): compute the distance from the starting point
Moves: 2 km North → 10 km East → 3 km North → 2 km East.
Find the straight-line distance from the start. Choose the correct option.
Difficulty: Easy
Correct Answer: 13 km
Explanation:
Coordinates Final position = (10 + 2, 2 + 3) = (12, 5)
Distance by Pythagoras d = √(12² + 5²) = √(144 + 25) = √169 = 13 km.
Discussion & Comments