InterviewSolution
Saved Bookmarks
| 1. |
Under What Circumstances Is The Finally Block Not Executed? |
|
Answer» If the program TERMINATES due to a fatal error or it exits by calling the system.exit () METHOD then FINALLY BLOCK is not executed. If the program terminates due to a fatal error or it exits by calling the system.exit () method then finally block is not executed. |
|