Write the program of DO...LOOP
Answers
Answered by
1
Explanation:
The body of do... while loop is executed once. If the test expression is true, the body of the loop is executed again and the test expression is evaluated. This process goes on until the test expression becomes false. If the test expression is false, the loop ends.
please like and follow
Answered by
0
Answer:
A do while loop is similar to while loop with one exception that it executes the statements inside the body of do-while before checking the condition. On the other hand in the while loop, first the condition is checked and then the statements in while loop are executed.
mark me as a brain list
Similar questions
Social Sciences,
1 month ago
History,
1 month ago
Math,
2 months ago
Math,
2 months ago
Math,
9 months ago