JAVA II CHAPTER 12: EXCEPTION HANDLING 2025| BRAND
NEW ACTUAL EXAM WITH 100% VERIFIED QUESTIONS AND
CORRECT SOLUTIONS| GUARANTEED VALUE PACK| ACE
YOUR GRADES.
Unplanned exceptions that occur during a program's execution
are also called execution exceptions.
a. True
b. False
REFERENCES:
594 - correct answer - b. False
, Page | 2
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 - correct answer - a. True
The code within a finally block cannot execute if the preceding try
block identifies an exception.
a. True
b. False
REFERENCES:
615 - correct answer - 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:
, Page | 3
624 - correct answer - a. True
To create your own throwable Exception class, you must extend a
subclass of
Catchable.
a. True
b. False
REFERENCES:
630 - correct answer - 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 - correct answer - 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