Q3) True or False
The DO WHILE.....LOOP is executed as long as the specified condition.
Answers
Answered by
1
True. Thanks bye. Best of luck.
Answered by
1
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