Sec 3: Exception Handling
73) What is Exception Handling?
74) What is difference between Checked Exception and Unchecked Exception?
75) What is the base class for Error and Exception?
76) Is it necessary that each try block must be followed by a catch block?
77) What is finally block?
78) Can finally block be used without catch?
79) Is there any case when finally will not be executed?
80) What is difference between throw and throws?

81) Can an exception be rethrown?
82) Can subclass overriding method declare an exception if parent class method doesn't throw an exception ?
83) What is exception propagation ?
Last updated