(Answered) 2025/2026.
Unplanned exceptions that occur during a program's execution are also called execution exceptions.
a. True
b. False
REFERENCES:
594
b. False
You can place as many statements as you need within a try block, and you can catch as many
exceptions as you want.
a. True
b. False
REFERENCES:
609
a. True
The code within a finally block cannot execute if the preceding try block identifies an exception.
a. True
b. False
REFERENCES:
615
b. False
When an exception is a checked exception, client programmers are forced to deal with the
possibility that an exception will be thrown.
a. True
b. False
REFERENCES:
624
a. True
To create your own throwable Exception class, you must extend a subclass of
Catchable.
a. True
b. False
REFERENCES:
630
b. False
A catch block is a method that can be called directly and takes an argument that is some type of
exception.
a. True
, b. False
REF
b. False
Placing data conversion attempts in a
try block allows you to handle potential data conversion errors caused by careless user entry.
a. True
b. False
REFERENCES:
604
a. True
Since variables declared within a try or catch block are local to that block, the variable goes out of
scope when the try or catch block ends.
a. True
b. False
REFERENCES:
606
a. True
The keyword catch followed by an Exception type in the method header is used when a method
throws an exception that it will not catch but that will be caught by a different method.
a. True
b. False
REFERENCES:
599
b. False
To use a method to its full potential, you must know the method name,
return type, type and number of arguments required, and type and number of exceptions the
method throws.
a. True
b. False
REFERENCES:
624
a. True
The ____ class represents more serious errors from which your program usually cannot recover.
a. Error
b. Throwable
c. Exception
d. Menu
REFERENCES:
595
a. Error