Computer Science, asked by tejmaari, 1 year ago

state 3 difference between while loop and do-while loop.

Answers

Answered by rishabswaroop
4
Do while loop will be executed at least once.......but while loop will check the condition first and then it may or may not get executed depending on the condition.While: your condition is at the begin of the loop block and makes possible to never enter the loop.
Similar questions