Tell us what are checked and unchecked exceptions? When do you use them?

Submitted by: Muhammad
A checked exception is an exception that must be catch, they are checked by the compiler. An unchecked exception is mostly runtime exception, and is not required to be catch. In general, use checked exception when the situation is recoverable (retry, display reasonable error message).
Submitted by: Muhammad

Read Online Java Software Engineer Job Interview Questions And Answers