InterviewSolution
Saved Bookmarks
| 1. |
Which Types Of Exceptions Are Caught At Compile Time? |
|
Answer» Checked exceptions can be caught at the TIME of program compilation. Checked exceptions MUST be handled by using try catch block in the CODE in ORDER to SUCCESSFULLY compile the code. Checked exceptions can be caught at the time of program compilation. Checked exceptions must be handled by using try catch block in the code in order to successfully compile the code. |
|