Form 6: Counting Loops (Repeat N Times) Exercise

Form 6: Counting Loops (Repeat N Times)

10 minutes 3 views 0 saves EN
Send as Assignment
Form 6: Counting Loops (Repeat N Times)

Learn to use counting loops that repeat a set of commands a precise number of times.

Questions

  1. MultiChoice

    What is a counting loop?

  2. MultiChoice

    In 'REPEAT 10 TIMES: [Jump]', how many times does the character jump?

  3. MultiChoice

    If 'REPEAT 3 TIMES: [Turn right, Move 1 step]' is executed, how many turns are made?

  4. WordsBox

    A counting loop executes a block of code a ____ number of ____

  5. MultiChoice

    'REPEAT 4 TIMES: [Move forward 2 steps]'. What is the total distance moved?

  6. MultiChoice

    What value controls how many iterations a counting loop performs?

  7. MultiChoice

    'REPEAT 2 TIMES: [REPEAT 3 TIMES: [Clap]]'. How many total claps occur?

  8. WordsBox

    The number inside REPEAT specifies how many ____ the loop will ____

  9. MultiChoice

    Which statement repeats drawing a square's 4 sides?

  10. MultiChoice

    If count = 5 and code inside loop adds 2 to score each time, what is score gain?

  11. MultiChoice

    What is one iteration of a loop?

  12. MultiChoice

    'REPEAT 6 TIMES: [Stamp star]'. How many stars are stamped?