

MCQOPTIONS
Saved Bookmarks
1. |
In nested try-catch block, if the inner catch block gets executed, then______________ |
A. | Program stops immediately |
B. | Outer catch block also executes |
C. | Compiler jumps to the outer catch block and executes remaining statements of the main() function |
D. | Compiler executes remaining statements of outer try-catch block and then the main() function |
Answer» E. | |