Multiple choice technology mainframe

For is used when the number of iterations is not fixed, and termination of the processing loop is dependent on a dynamic condition.

  1. True

  2. False

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

The FOR loop is specifically designed for situations where the number of iterations IS fixed or known in advance. For dynamic condition-based termination where the count isn't predetermined, you would use REPEAT...UNTIL or WHILE...ENDWHILE loops instead. The statement reverses the actual use case.