InterviewSolution
Saved Bookmarks
| 1. |
The condition in the while is checked at the |
| Answer» TION:A while loop evaluates its condition before the first ITERATION, and INBETWEEN each subsequent iteration. The condition is never evaluated inside the loop body. It checks it before running again (first time, after first RUN and so on). You have to break or whole chunk of code will run. | |