What is NullPointerException
-
UncheckedException
-
CheckedException
-
Error
-
UnspecifiedException
A
Correct answer
Explanation
NullPointerException extends RuntimeException, making it an unchecked exception. This means developers aren't required to catch or declare it - it typically indicates programming errors like attempting to use a null reference where an object is required.