MCQOPTIONS
Saved Bookmarks
| 1. |
Statement I: The break statement provides an early exit from for, while, do/while and switch structures and the execution continues with the first statement after the structure.Statement II: The continue statement, used in while, for, do/while loop, skips the remaining statements in the body of that structure, and proceeds with the next iteration of the loop.Code: |
| A. | Both Statement I and Statement II are individually true and Statement II is the correct explanation of Statement I |
| B. | Both Statements I and Statement II are individually true but Statement II is not the correct explanation of Statement I |
| C. | Statement I is true but Statement I] is false |
| D. | Statement I is false but Statement II is true |
| Answer» C. Statement I is true but Statement I] is false | |