Browse Today's favorites or All time favorites.
Please Sign In or Register to share and submit your questions.
Java Queries
Complete java interview questions library
Home » Interview Questions » Core Java Interview Questions » What is the difference between a while statement and a do statement?
What is the difference between a while statement and a do statement?
A while statement checks at the beginning of a
loop to see whether the next loop iteration should occur. A do statement checks
at the end of a loop to see whether the next iteration of a loop should occur.
The do statement will always execute the body of a loop at least once.
Write a comment