Answer Posted / aparna
Checked exceptions should be taken care by the user using
try and catch blocks otherwise runtime error occurs
for eg:
class.forName() method throws ClassNotFoundException which
should be caught between try and catch blocks
Unchecked exceptions are taken care by the jvm itself, user
need not worry about these type of exceptions
for eg:
Integer.parseInt() method throws NullPointerException which
need not be placed between try and catch blocks
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
Difference between start() and run() method of thread class?
What is object english?
Which is bigger float or double java?
What do you mean by exception handling in Java?
Can we create an object of static class in java?
How do you sort an array in java?
What are format specifiers in java?
Why do we need singleton?
which one is more efficient int x; 1. if(x==null) 2.if(null==x) state which one either 1 or 2?
How the metacharacters are different from the ordinary characters?
Which sort is best in java?
Why singleton is not thread safe?
What is boolean keyword in java?
What is void data type?
Can you explain the cs option of java interpreter?