Multiple choice technology enterprise content management

For a REPEAT operation to execute until the specified repeat condition remains true, the count parameter must be set to -1

  1. True

  2. False

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

For a REPEAT operation to execute continuously until the repeat condition becomes false (not remains true), the count parameter must be set to -1. A -1 value indicates unlimited repetition, allowing the loop to continue executing until the condition changes.

AI explanation

In this BMS/3270-style REPEAT operation, setting the count parameter to -1 is the special sentinel value that tells the system to keep repeating indefinitely based on the repeat condition, rather than stopping after a fixed number of iterations. Any positive count would instead cap the number of repetitions regardless of whether the condition is still true.