Multiple Choice
What can a method do with a checked exception?
A) Check the exception or ignore it.
B) Return the exception to the sender or handle it in a catch block.
C) Throw the exception to the method that called this method, or handle the exception in a catch block.
D) Handle the exception in the try block or handle the exception in the catch block.
Correct Answer:

Verified
Correct Answer:
Verified
Q24: The order in which catch blocks are
Q25: An unchecked exception is any exception that
Q26: For interfaces such as WindowListener that contain
Q27: If you want to provide your own
Q28: The try block contains statements that should
Q30: If there is a finally block after
Q31: When an exception occurs in a method,
Q32: Which class of exceptions is NOT checked?<br>A)
Q33: When an exception occurs, an object of
Q34: Which method throws the second exception in