Multiple Choice
Assume Exceptionname is a checked exception. If a method uses a class that can generate Exceptionname, then either the method must include try and catch statements where a catch statement catches Exceptionname, or the method header must include the statement
A) throw Exceptionname
B) throws Exceptionname
C) catch Exceptionname
D) catches Exceptionname
E) implements Exceptionname
Correct Answer:

Verified
Correct Answer:
Verified
Q25: Example Code Ch 11-1<br>public static void main(String[]
Q26: System.err is a(n)<br>A) input stream<br>B) GUI dialog
Q27: Why might you want to create your
Q28: A Java program can handle an exception
Q29: What are the three standard I/O streams
Q31: In order to have some code throw
Q32: Explain or provide an example showing how
Q33: A processing stream is a data stream
Q34: An unchecked exception is an exception that
Q35: Explain or provide an example showing how