Multiple Choice
Which of the following is not true of the RuntimeException class?
A) All RuntimeException throw checked exceptions.
B) All RuntimeException are Throwable objects.
C) RuntimeException has child classes ArithmeticException and NullPointerException.
D) RuntimeException objects are not Error objects.
E) All of these are true
Correct Answer:

Verified
Correct Answer:
Verified
Q1: Example Code Ch 11-1<br>public static void main(String[]
Q2: All run-time errors throw exceptions.
Q3: If an exception arises in a catch
Q5: An exception that could also arise in
Q6: An ArithmeticException is a checked exception.
Q7: Example Code Ch 11-1<br>public static void main(String[]
Q8: Programmers can define their own exceptions by
Q9: The difference between a checked and an
Q10: The Scanner class provides an abstraction for
Q11: Explain or provide an example showing how