InterviewSolution
Saved Bookmarks
| 1. |
The Code In A Finally Clause Will Never Fail To Execute, Right? |
|
Answer» USING System.exit(1); in TRY block will not allow FINALLY code to execute. Using System.exit(1); in try block will not allow finally code to execute. |
|