Multiple choice technology mainframe

An iteration will continue while the condition is false

  1. True

  2. False

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

Iterations continue WHILE the condition is true, not while it's false. Loop constructs like PERFORM UNTIL or WHILE loops execute their body as long as the tested condition remains true; once the condition becomes false, the iteration terminates.