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 |
Do I need to import java.lang package any time? Why?
Where are the card layouts used?
Can we use String with switch case?
what is the main difference between string and stringbuffer? can you explain it with program?
What is double parsedouble in java?
How many times garbage collector will invoke an object?s finalize() method?
What is static import?
Can an interface extend another interface?
What is the use of bin and lib in JDK?
in a console we r giving java <class name> if r pressing enter where it'll goes
Can we sort a map in java?
what are the jsp tags with example?