0 votes
in JAVA by

Which of the following is an example of an unchecked exception in Java?

A) NullPointerException

B) IOException

C) ClassNotFoundException

D) SQLException

1 Answer

0 votes
by
Answer: A

Explanation: NullPointerException is an example of an unchecked exception in JavA) Unchecked exceptions are not checked at compile-time and are thrown at runtime.
...