-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
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 iterationshould occur. Ado statement checks at the end of a loop to see whether the next iteration of a loop shouldoccur. The dostatement will always execute the body of a loop at least once.
-
-
-
-
-
Java Interview Questions
Ans