Computer Science, asked by deysutapa12, 5 months ago

The ____ loop checks the stopping condition at the beginning of the loop.​

Answers

Answered by kswarnlata2
1

Answer:

cheask answer this is so easy

Answered by Anonymous
2

while loop is executed once before the condition is checked. Its syntax is: do { // body of loop; } while (condition); ... If the condition evaluates to true , the body of the loop inside the do statement is executed again.

Similar questions