0

Can any one tell me the difference between while loop or do while loop

27th Feb 2017, 12:22 PM
Satyam Jaiswal
Satyam Jaiswal - avatar
2 Answers
+ 4
while loop executes the code only if the condition is matched and repeats until the condition returns false. do while executes the loop script every time at least once and after the execution finds out the result of its condition
27th Feb 2017, 12:27 PM
Patrik Sokol
Patrik Sokol - avatar
+ 4
while loop Q: what does condition return? false -> exit the loop true -> execute the loop script and ask again do while loop execute the loop script Q: what does condition return? false -> exit the loop true -> execute the loop script and ask again
27th Feb 2017, 12:33 PM
Patrik Sokol
Patrik Sokol - avatar