Computer Science for IGCSE & O level - Programming (Section 13 - No. 50)
Which is a characteristic of a post-condition loop?
The condition is checked *before* the loop body.
The condition is checked *after* the loop body.
The loop always iterates zero times.
It is also known as a while loop.
Explanation
The condition is evaluated after the loop body runs, thus guaranteeing at least one iteration.
Comments (0)
