InterviewSolution
Saved Bookmarks
| 1. |
What Is The Difference Between A Break Statement And A Continue Statement? |
|
Answer» A BREAK statement RESULTS in the termination of the statement to which it applies (switch, for, do, or while). A continue statement is used to end the current LOOP iteration and RETURN control to the loop statement. A break statement results in the termination of the statement to which it applies (switch, for, do, or while). A continue statement is used to end the current loop iteration and return control to the loop statement. |
|