Computer Science, asked by tajvisit50, 7 months ago

Continue
print (1)
Answer the following
What is the difference between a while and a for loop?
a​

Answers

Answered by tanothelol
1

The difference is that the do while loop executes at least once because it checks for the loop condition while exiting. While is a entry controlled loop and do while is a exit control loop. Whereas in do while loop it will enter the loop and will then check for the condition

Similar questions