No questions yet
181 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
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
Show video info
Pre-requisite