InterviewSolution
Saved Bookmarks
| 1. |
What Is The Difference Between Break And Continue? |
|
Answer» Break means LOOP should stop PROCESSING, CONTINUE means loop should stop processing the CURRENT ITERATION and immediately start processing the next iteration. Break means loop should stop processing, CONTINUE means loop should stop processing the current iteration and immediately start processing the next iteration. |
|