InterviewSolution
Saved Bookmarks
| 1. |
Which of the following handles the exception when a catch is not used?(a) finally(b) throw handler(c) default handler(d) java run time system |
|
Answer» Right option is (c) default handler Easiest explanation: Default handler is used to handle all the exceptions if catch is not used to handle exception. Finally is called in any case. |
|