Multiple Choice
When an exception is thrown by code in the try block, the JVM begins searching the try statement for a catch clause that can handle it and passes control of the program to:
A) each catch clause that can handle the exception.
B) the last catch clause that can handle the exception.
C) the first catch clause that can handle the exception.
D) If there are two or more catch clauses that can handle the exception, the program halts.
Correct Answer:

Verified
Correct Answer:
Verified
Q6: The exception classes are in packages in
Q7: In order for an object to be
Q8: When an exception is thrown:<br>A) it must
Q9: A class must implement the Serializable interface
Q10: In a catch statement, what does the
Q12: What will be the result of the
Q13: What will the following code display?<br>String input
Q15: All exceptions are instances of classes that
Q16: The following catch statement can: catch (Exception
Q57: The try statement may have an optional