Computer Science, asked by cjiya6440, 4 months ago

while loop repeatedly executes block of code known as the loop body until the controlling expression in false [ ] true \ false​

Answers

Answered by aayu37
2

Answer:

true..

.....sayad.....

Answered by Anonymous
0

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