Multiple Choice
If, within one try statement you want to have catch clauses of the following types, in which order should they appear in your program: (1) Exception
(2) IllegalArgumentException
(3) RuntimeException
(4) Throwable
A) 1, 2, 3, 4
B) 2, 3, 1, 4
C) 4, 1, 3, 2
D) 3, 1, 2, 4
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q25: A catch clause that uses a parameter
Q39: If the code in a method can
Q40: When you write a method that throws
Q41: The ability to catch multiple types of
Q41: In a try/catch construct, after the catch
Q42: Beginning in Java 7, multi-catch can reduce
Q43: The numeric classes' "parse" methods all throw
Q45: If your code does not handle and
Q46: This is a section of code that
Q47: The throw statement informs the compiler that