How does a try statement determine which catch clause
should be used to handle an exception?
Answer Posted / vatti
when an exception is thrown from the try block,the type of
exception object specified in the catch statement matches
with the exception thrown, that one will execute
Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
Why java does not support pointers?
What is method overloading in java ?
Why is core java important?
What are loops in java?
What is the difference between final, finally and finalize()?
What does it mean to be immutable?
Can a static class have a constructor java?
Define max and min heap, also the search time of heap.
what is session in java?
What is a parameter in java?
What is the purpose of the system class in java programming?
What is difference between iterator and enumeration in java?
How can you add and remove nodes in jtree?
What is mysql driver class name?
Why call by value prevents parameter value change?