Answer Posted / ranganathkini
There are three main types of Exceptions:
1. Checked execptions: which have to be handled by the code.
These represent avoidable exceptional conditions which can
be handled and recovered from.
2. Runtime Exceptions: which need not be handled by the
code. These represent unexpected exceptional conditions
which can be handled but not necessarily recover from.
3. Errors: which need not be handled by the code. These
represent severe unexpected exceptional conditions which
shud not be attempted to handle.
Is This Answer Correct ? | 79 Yes | 22 No |
Post New Answer View All Answers
Why generics are used in java?
What is difference between public static and void?
Does a function need a return?
What is difference between core java and java ee?
Explain garbage collection in java?
Name few "optional" classes introduced with java 8 ?
What is the diffrence between inner class and nested class?
What is synchronization and why is it important in java programming?
What is prefix of a string?
Can a class be a super class and a sub-class at the same time? Give example.
What is blank final variable?
Can singleton class be serialized?
What is boolean keyword in java?
What is the difference between a vector & an array list?
What is the difference between static and non-static variables in java programming?