Solved

When an Exception Is Thrown by Code in the Try

Question 11

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:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions