Q1.What is an Exception?
Ans.An unwanted, unexpected event that disturbs normal flow of the program is called Exception.Example: FileNotFondException.

Q2.What is the purpose of Exception Handling?
Ans.The main purpose of Exception Handling is for graceful termination of the program.

Q3.What is the meaning of Exception Handling?
Ans. Exception Handling doesn’t mean repairing an Exception, we have to define alternative way to continue rest of the code normally.
Example: If our programming requirement is to read the data from the file locating at London but at Runtime if London file is not available then we have to use local file alternatively to continue rest of program normally. This is nothing but Exception Handling.


Q4.Explain Default Exception Handling Mechanism in java?
Ans.If an exception raised, the method in which it’s raised is responsible for the creation of  Exceptions object by including the following information:

Name of Exception: Description
Stack Trace (Location of the Exception)