Multiple Choice
Java SE 7's multi-catch enables you to catch multiple exception types in a single catch handler and perform the same task for each type of exception.The syntax for a multi-catch is:
A) catch ( Type1 or Type2 or Type3 e )
B) catch ( Type1 e1 | Type2 e2 | Type3 e3 )
C) catch ( Type1 | Type2 | Type3 e )
D) catch ( Type1 e1 or Type2 e2 or Type3 e )
Correct Answer:

Verified
Correct Answer:
Verified
Q6: Which of the following statements is false?<br>A)
Q9: Which of the following statements is false?<br>A)
Q10: The throws clause of a method:<br>A)specifies the
Q11: Which of the following exceptions is a
Q14: Which of the following statements about the
Q15: All exception classes inherit,either directly or indirectly,from
Q19: Which of the following is true?<br>A)A precondition
Q24: When an unchecked exception occurs in a
Q25: Which of the following statements is true?<br>A)Using
Q26: Which of the following statements is true?<br>A)