- :
Check Your Understanding:
  1. 1. Variables should be created at the beginning of task main.
  2. True
    False
  3. 2. Which of these is an improper variable name?
  4. time1
    time 1
    1 time
    They are all improper names because time1 is a reserved word in ROBOTC
  5. 3. What does it mean to “initialize” a variable?
  6. It is given its initial value to store
    It is given a value which may not be changed
    It is given a random value to store
    It is given a random value which may not be changed
  7. 4. When the robot reaches a variable in the program, it checks what value is stored in the variable and uses it the program.
  8. True
    False