InterviewSolution
Saved Bookmarks
| 1. |
which answer most closely indicates the behavior of the program? |
| Answer» Once the program throws a RuntimeException (in the throwit() method) that is not caught, the finally block will be executed and the program will be terminated. If a method does not handle an exception, the finally block is executed before the exception is propagated. | |