give two differences between do while loop and while loop
Answers
Answered by
2
Explanation:
Explanation:Here, the main difference between a while loop and do while loop is that while loop check condition before iteration of the loop. On the other hand, the do-while loop verifies the condition after the execution of the statements inside the loop. Furthermore, the while loop is known as the entry-controlled loop.
Answered by
2
Answer:
Do while is exit -controlled loop while loop is entry controlled loop.
Do while loop tests the condition at the end .
While loop tests the condition at beginning.
Explanation:
Plzz mark me as a brainlist
Similar questions