Answer Posted / m.k.sreenivas
Checked exceptions:
A checked exception is some subclass of Exception (or
Exception itself), excluding class RuntimeException and its
subclasses. Each method must either handle all checked
exceptions by supplying a catch clause or list each
unhandled checked exception as a thrown exception.
Unchecked exceptions:
All Exceptions that extend the RuntimeException class are
unchecked exceptions. Class Error and its subclasses also
are unchecked.
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
when a request is generated from apache tomcat 5.5 and goes to oracle 10g or mysql,,, how the oracle or mysql reads the request as apache is a web server and oracle 10g is application server? when the oracle 10g provides response, how the apche tomcat reads it???
What is main method?
What does three dots mean in java?
What is a memory leak in java?
What happens if main method is not static?
Write a program to print fibonacci series up to count 10.
What is callablestatement? How you can call stored procedure to pass in parameter?
What are the basic control structures?
Is sizeof a keyword in java programming?
What environment variables do I need to set on my machine in order to be able to run java programs?
What is remote method invocation (rmi)?
Is nan false?
Is java still necessary?
Why local variables are stored in stack?
What is difference between equals and hashcode method?