Question: If a try statement has catch blocks for both ClassCastException and RuntimeException, then which of the following statements is correct? A. The catch blocks for
If a try statement has catch blocks for both ClassCastException and RuntimeException, then which of the following statements is correct?
A. The catch blocks for these two exception types can be declared in any order.
B. A try statement cannot be declared with these two catch block types because they are incompatible.
C. The catch block for ClassCastException must appear before the catch block for RuntimeException.
D. The catch block for RuntimeException must appear before the catch block for ClassCastException.
E. None of the above.
Step by Step Solution
3.36 Rating (162 Votes )
There are 3 Steps involved in it
The correct statement is C The catch block ... View full answer
Get step-by-step solutions from verified subject matter experts
