How many times do-while loop will be executed if condition is false
Answers
Answered by
1
Answer:
fails 3-4 times but if you try with the correct loop items you can pass that but you should be careful when you are trying this and if the condition is false then the executed will not be succeed
Answered by
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