Computer Science for IGCSE & O level - Programming (Section 1 - No. 16)

In the given examples, which type of loop is more similar to the `REPEAT...UNTIL` loop?
FOR loop
Pre-condition (WHILE) loop
Post-condition (DO...WHILE) loop
Nested Loop

Explanation

Both `REPEAT...UNTIL` and `DO...WHILE` are post-condition loops, meaning the condition is checked at the end.

Comments (0)

Advertisement