Computer Science, asked by gulamgausqadri786, 7 months ago

10. DO WHILE...LOOP checks the condition at the bottom of the looo 1 0e och​

Answers

Answered by BrainlyProgrammer
1

Answer:

True...

Explanation:

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