Computer Science, asked by pirhussain028, 1 month ago

What is the difference between the DO WHILE... LOOP and DO...LOOP WHILE forms of the DO...LOOP?​

Answers

Answered by harshit7944
3

Answer:

The difference lies in the place where the condition is tested. The while loop tests the condition before executing any of the statements within the while loop whereas the do-while loop tests the condition after the statements have been executed within the loop

Answered by prasaddalvi0226
1

Answer:

The difference is

Explanation:

In do while loop while you do the loop will take place. But in the second one Do loop while you have to set a specific time to do loop.

Similar questions