Which statements about a do...while loop are true? Select all that apply.
Explanation
The body comes before the condition check, so even an initially false condition allows one execution. The later test decides whether another iteration starts; it is not skipped permanently, and the loop is therefore not equivalent to while in the zero-run case.