Welcome to Westonci.ca, your one-stop destination for finding answers to all your questions. Join our expert community now! Discover detailed solutions to your questions from a wide network of experts on our comprehensive Q&A platform. Experience the ease of finding precise answers to your questions from a knowledgeable community of experts.

The do/while loop is generally used when the program loop should run at least once before testing for the stopping condition true false

Sagot :

Answer:

In the do-while loop, the body of a loop is always executed at least once. After the body is executed, then it checks the condition.

Explanation:

If the condition is true, then it will again execute the body of a loop otherwise control is transferred out of the loop.