Module 3 · Grid Driving
Lesson 3 · Turning on the Grid — Knowledge ChecksAnswer key
Which sequence drives an L-shape — two segments, a right turn, then two more segments?
Drive to the corner, turn, then continue — the drive/turn/drive order is what makes the L.
After tracker.turn_right(), do you need to clear the intersection before the next drive_intersections()?
turn_right() and turn_left() drive forward as part of turning, so the robot has already cleared the cross — go straight into the next drive.
Starting at the top-left facing right, the robot runs: drive_intersections(3), turn_right(), drive_intersections(2). Where does it end up?
It drives 3 to the right, turns right (now facing down), and drives 2 down — an L ending 3 across and 2 down.