177k views
0 votes
The difference between a checked and an unchecked exception is:

a) checked exceptions need not be listed in a throws clause

b) unchecked exceptions must be listed in a throws clause

c) neither kind of exception follows the rules of exception propagation

d) an unchecked exception requires no throws clause

e) a checked exception always must be caught by a try block; an unchecked exception does not

1 Answer

4 votes

Answer: (d) an unchecked exception requires no throws clause

Step-by-step explanation:

A checked exception requires a throws clause whereas an unchecked exception does not require a throws clause.

User Yesica
by
7.9k points