MCQOPTIONS
Saved Bookmarks
| 1. |
In nested try block, if inner catch handler gets executed, then _____________ . |
| A. | Program execution stops immediately. |
| B. | Outer catch handler will also get executed. |
| C. | Compiler will jump to the outer catch handler and then executes remaining executable statements of main(). |
| D. | Compiler will execute remaining executable statements of outer try block and then the main(). |
| Answer» E. | |