Multiple Choice
Which circumstance is an exception to the catch or declare rule?
A) Exceptions that result from errors of some sort.
B) Exceptions that are descendents of the class RuntimeException.
C) Both A and B
D) None of the above
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q2: Write a Java statement that throws a
Q14: A program can catch multiple exceptions.
Q17: The catch block has _ parameters.<br>A)zero<br>B)one<br>C)two<br>D)three<br>
Q19: Use a catch block to display the
Q21: You can not place a try block
Q22: ArrayIndexOutOfBoundsException is a descendent of the class
Q23: If a method throws an exception,and the
Q25: Try blocks contain code that could possibly:<br>A)handle
Q26: List five common examples of exceptions that
Q35: The basic way of handling exceptions in