DEVFYI - Developer Resource - FYI

Is it necessary that each try block must be followed by a catch block?

Java Interview Questions and Answers (part 3)


(Continued from previous question...)

521. Is it necessary that each try block must be followed by a catch block?

It is not necessary that each try block must be followed by a catch block. It should be followed by either a catch block OR a finally block. And whatever exceptions are likely to be thrown should be declared in the throws clause of the method.

(Continued on next question...)

Other Interview Questions