Answer Posted / harmeet
Checked Exceptions must be caught and thrown by the user
otherwise compile time error will be displayed saying it
must be catched. We've to catch those exceptions using try
and catch blocks.
Eg:Class.forName() throws ClassNotFoundException, when
trying to load the specified file in class.forName().
whereas Unchecked Exceptions are handled by jvm, user need
not to handle those exceptions.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What is static class
What is the full name of java?
What are advantages and disadvantages of OOPs?
How do you sort words in java?
Is intellij better than eclipse?
What is the difference between heap and stack memory?
What is math floor in java?
What is double parsedouble in java?
What is the difference between stringbuffer and stringbuilder class?
Where is singleton pattern used?
What is meant by distributed application? Why are we using that in our application?
What do you mean by append?
What is difference between calling start() and run() method of thread?
What do you mean by light weight and heavy weight components?
What do you understand by a Static Variable?