Multiple choice technology

For a REPEAT operation to execute the code once, the count parameter needs to be set to

  1. -1

  2. 0

  3. 1

  4. 1/-1

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

In REPEAT operations, setting count to 0 executes the code exactly once. Setting it to 1 would execute twice, while -1 would create an infinite loop. This counterintuitive behavior exists because count represents the number of repetitions to perform after the first execution.