InterviewSolution
Saved Bookmarks
| 1. |
Is It Possible To Execute Two Catch Blocks? |
|
Answer» No. Whenever, an exception occurs in your PROGRAM, the correct catch block is EXECUTED and the CONTROL goes to the finally block. No. Whenever, an exception occurs in your program, the correct catch block is executed and the control goes to the finally block. |
|