Form 6: Counting Loops (Repeat N Times)
Questions
-
MultiChoice
What is a counting loop?
-
MultiChoice
In 'REPEAT 10 TIMES: [Jump]', how many times does the character jump?
-
MultiChoice
If 'REPEAT 3 TIMES: [Turn right, Move 1 step]' is executed, how many turns are made?
-
WordsBox
A counting loop executes a block of code a ____ number of ____
-
MultiChoice
'REPEAT 4 TIMES: [Move forward 2 steps]'. What is the total distance moved?
-
MultiChoice
What value controls how many iterations a counting loop performs?
-
MultiChoice
'REPEAT 2 TIMES: [REPEAT 3 TIMES: [Clap]]'. How many total claps occur?
-
WordsBox
The number inside REPEAT specifies how many ____ the loop will ____
-
MultiChoice
Which statement repeats drawing a square's 4 sides?
-
MultiChoice
If count = 5 and code inside loop adds 2 to score each time, what is score gain?
-
MultiChoice
What is one iteration of a loop?
-
MultiChoice
'REPEAT 6 TIMES: [Stamp star]'. How many stars are stamped?