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 |
why is S capital in System.out.println ????
what are literals in java?
List some features of the abstract class.
What is the relationship between a method?s throws clause and the exceptions that can be thrown during the method?s execution?
What things should be kept in mind while creating your own exceptions in java?
What is JAVA? Why it is platform independent?
Describe OOP in java?
What is garbage collector?
I am unable to find or learn about print command. I have a graphical program in core java in applet but i want to give print command but i have coding for that so if anyone know about this plz mail me on avdhesh_chauhan007@yahoo.co.in
What data structures are used to perform recursion?
0 Answers Akamai Technologies,
What is a null point?
how many ways to create Thread and which one is good? runnable interface ot Thread class?