What is Checked & Unchecked exception?
Both types of exceptions are drived from the class Exception.But Unchecked exception are RunTimeException, which do not to be handled or declared. Whereas Checked Exceptions must be handled by try/catch block or must be declared in the method signature.