explain the classification of exception and hoew to handle
the exceptions
Answers were Sorted based on User's Feedback
there are two types of exceptions in java
1> checked exceptions
checked exceptions are also known as compile time
exceptions as they are identified during compile time of
the program. It is also known as Normal Exception.
Example: FileNotFoundException,ClassNotFoundException, etc..
2> Unchecked exceptions
Unchecked Exceptions are also known as runtime exceptions
as they are identified during the runtime of the program.
Example: ArithmeticException etc..
Is This Answer Correct ? | 11 Yes | 2 No |
Answer / ravikiran
Checked and unchecked exceptions
We can handle the exception by make use of
try/catch/finally (or) by using throws clause
Is This Answer Correct ? | 4 Yes | 3 No |
what is difference between type 4 driver and type 1 driver?
2 Answers CMC, CTS, IBM, JK Technosoft, Napier Healthcare,
What do you mean by JVM?
What is a instance variable?
What are listeners in java and explain ?
How Marker Interfaces are instruct to complete the desired need ?
What is meant by method?
Why is java multithreaded?
How to sort numbers in java without array?
What is the advantage of preparedstatement over statement?
What is the purpose of static methods and static variables?
What is finalize() function in java?
Enlist diffrent types of inheritance supported by java?