InterviewSolution
Saved Bookmarks
| 1. |
What Is The Purpose Of Finally Clause Of A Try-catch-finally Statement In Java Programming? |
|
Answer» The finally clause is used to provide the capability to EXECUTE code no MATTER WHETHER or not an EXCEPTION is THROWN or caught. The finally clause is used to provide the capability to execute code no matter whether or not an exception is thrown or caught. |
|