Saved Bookmarks
| 1. |
Difference between break and continue statement (3-5) points |
|
Answer» Break leaves the LOOP completely and executes THESTATEMENTS after the loop. Whereas Continue leaves the current ITERATION and executes with the next value in the loop. ... A continue STATEMENT is used to end the current loopiteration and return control to the loop statement |
|