Computer Science, asked by kgurnoor7936, 1 year ago

What is the similarity between while and do while loop in java

Answers

Answered by musaib340
1
Well, below are the differencesbetween while and do while loop, Inwhile loop, condition is tested at the beginning of the loop and if the condition is true then only statements in that loop will be executed. Hencewhile loop executes the code block only if the condition is true
Similar questions