Let the starting position be (0,0). Directions: N(y+), S(y-), E(x+), W(x-). 1. Walks 20 m North: Position (0, 20). 2. Turns right (facing East), walks 30 m: Position (0+30, 20) = (30, 20). 3. Turns right (facing South), walks 35 m: Position (30, 20-35) = (30,-15). 4. Turns left (facing East), walks 15 m: Position (30+15,-15) = (45,-15). 5. Turns left (facing North), walks 15 m: Position (45,-15+15) = (45, 0). The final position is (45, 0). Compared to the origin (0,0), this is 45 m along the positive x-axis, which is East. He is 45 m East from his original position. This matches option (4).