0 votes
in JAVA by
Which of the following is an example of a checked exception in Java?

A) ArrayIndexOutOfBoundsException

B) IllegalArgumentException

C) RuntimeException

D) FileNotFoundException

1 Answer

0 votes
by
Answer: D

Explanation: FileNotFoundException is an example of a checked exception in JavA) Checked exceptions are checked at compile-time and must be caught or declared in the method signature.
...