Answer Posted / manikandan
Exception come is several flavours such as
RuntimeExceptions, Errors, Checked and Unchecked. The 3
major types of exception are ,
(1) RuntimeException : Error that can occur in almost any
code (Eg)NullPointerException
(2) Error : Serious error you really should not try to
catch, e.g. OutOfMemoryError.
(3) Checked Exception : Likely exceptional condition that
can only occur in specific places in the code e.g.
EOFException.
| Is This Answer Correct ? | 14 Yes | 8 No |
Post New Answer View All Answers
What is meant by overloading?
Is a case study a method or methodology?
What are alternatives to java serialization?
Is object a data type in java?
What is sortedmap interface?
What are java packages?
How to sort an array in java without using sort method?
Explain notifyall() method of object class ?
explain different ways of using thread? : Java thread
How many threads can I run java?
Is array a class?
What does a method signature consist of?
Can I learn java in 3 months?
What is used of static keyword in java?
Explain about anonymous inner classes ?