Multiple choice technology web technology

For a REPEAT Operation to execute as long as the specified repeat condition remains true,the count parameter needs to be set to

  1. 1

  2. 0

  3. -1

  4. None

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

Setting the count parameter to -1 in a REPEAT operation creates an infinite loop that continues as long as the repeat condition remains true. A count of 0 would prevent any execution, while 1 would execute once regardless of condition.