while do while loops - English

4579 visits



Outline:

1. while Loop while loop executes a block of code while a condition is true. 2. do-while loop do-while loop will always execute the piece of code at-least once. It will then check the condition and repeat the loop while the condition is true