Which of the following classes is a checked exception?
C.
First off, Error is an unchecked exception.
It is recommended that Error not be caught by most application processes, making Option A incorrect.
IllegalStateException inherits RuntimeException, both of which are unchecked, making Options B and D, respectively, incorrect.
Option C is correct because ParseException must be handled or declared.