Define unchecked exception.
Answers
Answered by
3
Answer:
Unchecked Exception in Java is those Exceptions whose handling is NOT verified during Compile time . These exceptions occurs because of bad programming. The program won't give a compilation error. All Unchecked exceptions are direct sub classes of RuntimeException class.
Similar questions