Your robot is supposed to drive straight but keeps drifting to the left. What does that tell you about the two sides?
- A.Both sides are running at exactly the same speed
- B.The right side is running slightly faster than the left
- C.The motors are running in opposite directions
- D.One side is completely stopped
Answer Why?
You run Set effort with left 0.5 and right 0.5. What does the robot do?
- A.Curves to the left
- B.Drives straight forward
- C.Spins in place
- D.Stays still
Answer Why?
What happens with left 0.5 and right -0.5 (one wheel forward, one backward)?
- A.Drives straight
- B.Spins in place
- C.Drives backward
- D.Curves gently
Answer Why?
You set both motors to effort 0.5 and drive across a smooth floor, then across a thick carpet. What happens?
- A.The robot travels at the same speed on both — effort sets the speed
- B.It is slower on the carpet: effort is how hard the motors try, and the carpet fights back
- C.It goes faster on the carpet
- D.The robot refuses to move on carpet
Answer Why?
A robot is asked to hold a steady speed as it drives up and over a hill. What does its effort do?
- A.Stays at one fixed value the whole way
- B.Rises going uphill and drops going downhill, to keep the speed the same
- C.Drops going uphill
- D.Goes to zero at the top
Answer Why?
What's the difference between what Straight does and what Set effort does?
- A.Straight drives its distance and then stops the motors; Set effort starts the motors and leaves them running
- B.They do the same thing — Set effort is just the Python version
- C.Straight leaves the motors running; Set effort stops them when it finishes
- D.Set effort can only drive backward
Answer Why?
Why is 'Set effort 0.5, Sleep 3 seconds' a poor way to travel a set distance?
- A.Sleep blocks are slower than Straight blocks
- B.Effort is not speed — the same 3 seconds covers different distances depending on battery, surface, and load
- C.Sleep stops the motors, so the robot never gets anywhere
- D.The robot cannot run Set effort and Sleep in the same program
Answer Why?
When is the Arcade block a better choice than Set effort?
- A.When you need smooth, intuitive steering like a game controller
- B.When you need to control each wheel to an exact effort
- C.When you want precise, measured distances
- D.Arcade and Set effort are exactly the same
Answer Why?