Computer Science, asked by themonotonuspan, 1 year ago

What is Post-Tested loop.

Answers

Answered by Lovealia1
4
do while loops check the condition after the block is executed, the control structure is often also known as a post-test loop. Contrast with the while loop, which tests the condition before the code within the block is executed, the do-while loop is an exit-condition loop.

themonotonuspan: Thanks
Similar questions