Fast Enterprises Interview Question

What is the difference between a do while and while loop?

Interview Answer

Anonymous

Aug 5, 2014

Think of a Do While loop as a loop that starts inherently by existing, and runs through once, whereas a While loop is a mixture of the conditional If statement and a Do While loop. The While loop only runs "While" the condition is true.

1