Which type of loop is guaranteed to have the body execute at least once?
Click to view the answer
A.
A do-while loop checks the loop condition after execution of the loop body.
This ensures it always executes at least once, and Option A is correct.