InterviewSolution
Saved Bookmarks
| 1. |
What Is The Difference Between A While Statement And A Do Statement? |
|
Answer» 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. 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. |
|