Font size
WorksheetsVEX V5 Coding Blocks
Total questions: 12
Worksheet time: 10mins
What behavior will the VR Robot perform if the condition of the Left Bumper Sensor being pressed is TRUE?
The VR Robot will continue to drive forward forever.
The VR Robot will drive in reverse for 50 millimeters (mm) and then turn left for 90 degrees.
The VR Robot will stop moving.
The VR Robot will drive forward for 50 millimeters (mm) and then turn right for 90 degrees.
Which of the following would result in the robot driving in a square?
Why is this car not starting when the bumper is pressed?
Need to remove the wait
Need to remove the stop
Need a spin motor block after the set velocity block
Need to get rid of the forever loop
The motor doesn't start when the bumper is pressed. What's wrong?
Didn't put a stop motor
Didn't use a forever loop
Didn't tell the motor to spin
Didn't put in a wait before the stop
Which block must be at the beginning of every program in VEXcode?
Which of the following describes why a Repeat block would be used in a project?
To repeat certain blocks forever.
To save space and time for blocks that repeat more than once in a project.
To only run a stack of blocks one time.
To run an attached stack of blocks when the project is started.
What do the grey blocks do in the V5 Coding System?
They tell the robot what to do.
They are comment blocks which make the code easier to read and understand what those blocks do.
They detect errors in your code.
The are event blocks, which cause the next set of blocks to execute when a specific event happens.
What is the primary function of a [Forever] block in a coding project?
To execute a set of commands once.
To repeat a set of commands indefinitely until the project is stopped.
To execute commands only when a specific condition is met.
To pause the execution of commands for a specified time.
Why would a [If then] block be used in a project?
To execute a set of commands only if a certain condition is true.
To repeat a set of commands a specific number of times.
To ask the user a question.
To execute commands in a random order.
What happens when a [Stop Project] block is used in a project?
All motors stop spinning, but then start to run again.
The project pauses for a specified amount of time.
All actions and the project are stopped immediately.
The project saves and continues running.
When this project starts the robot is turning in a circle. What is the problem?
The velocity is too high
The wait needs to be increased
Only Motor1 is set to move forward
It is not in a forever loop
What is 1 thing you have done to troubleshoot when your robot is not working properly?
