Multiple choice technology platforms and products

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. NULL

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

For a REPEAT operation to continue indefinitely as long as a condition remains true, the count parameter should be set to -1. This indicates unlimited repetition. Setting count to 0 would typically mean no repetitions, 1 would execute once, and NULL might indicate an unset or default limited count.