Multiple Choice
Which of the following statements is false?
A) All exceptions must derive from the class Throwable.
B) The class Throwable provides the method getStackTrace that outputs the stack trace to the standard error stream.
C) The class Throwable provides the method getMessage that returns the descriptive string stored in an exception.
D) The string returned from class Throwable's getMessage method contains the name of the exception's class.
Correct Answer:

Verified
Correct Answer:
Verified
Q1: Exceptions can be thrown by _.<br>A) the
Q2: An uncaught exception _.<br>A) is a possible
Q3: If the catch-or-declare requirement for a checked
Q4: Which of the following statements is false?<br>A)
Q5: The throws clause of a method:<br>A) specifies
Q7: Which of the following statements is true?<br>A)
Q8: Which of the following statements about try
Q9: Which of the following statements is false?<br>A)
Q10: Chained exceptions are useful for finding out
Q11: Which of the following exceptions is a