👤

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

Answer :

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.