Multiple Choice
If the current method in a program will not be able to handle an exception, what should be coded into the method?
A) The throws clause should list the name of the method to which the exception should be passed.
B) The method declaration should be enclosed in a try/catch block.
C) The method should include a try/catch block for all possible exceptions.
D) The throws clause should list the names of all exceptions that the method will not handle.
Correct Answer:

Verified
Correct Answer:
Verified
Q69: Consider the following code snippet: try<br>{<br>PrintWriter outFile
Q70: Consider the following code snippet. Scanner in
Q71: The Scanner class's _ method is used
Q72: Which of the following statements about exception
Q73: Consider the following code snippet: Scanner in
Q75: Insert the missing code in the following
Q76: Consider the following code snippet: public double[]
Q77: Insert the missing code in the following
Q78: Consider the following code snippet: Scanner in
Q79: Which of the following statements about a