Computer Science, asked by adasrh8254, 10 months ago

How many times do while loop will be executed if condition is false in java

Answers

Answered by Anonymous
76

Answer -

Do while loop will execute at least 1 time wheather condition is true or false.

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