Computer Science, asked by Umairhelper, 9 months ago

a. Do While loop stops executing when the condition becomes False.
true or false​

Answers

Answered by sahilbhandhari2003
2

Answer:

true

Explanation:

because while loop is an run infinity so when the condition become false it stop

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