a. Do While loop stops executing when the condition becomes False.
true or false
Answers
Answered by
2
Answer:
true
Explanation:
because while loop is an run infinity so when the condition become false it stop
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