0 votes
in JAVA by

Which of the following is a checked exception?

a) NullPointerException

b) RuntimeException

c) ArrayIndexOutOfBoundsException

d) IOException

1 Answer

0 votes
by

Solution: d) IOException

Explanation: IOException is a checked exception, which means that it must be either handled or declared.

...