Define how does a try statement determine which catch clause should be used to handle an exception?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More Core Java Interview Questions

Are there structures in java?

0 Answers  


Which method must be implemented by all threads?

0 Answers  


how tha garbage collector know that the object will be deleted? on which algorithm the garbage collector works? what is the working principle of garbage collector? How manay types of garbage collectors r there?

1 Answers   HP, SparkTG,


Describe the syntax of multiple inheritance? When do we use such an inheritance?

0 Answers   Fidelity,


abstract class Demo { public void show() { System.out.println("Hello I am In show method of Abstract class"); } } class Sample extends Demo { public void show() { super.show(); System.out.println("Hello I am In Sample "); } } public class Test { public static void main(String[] args) { //I WANT TO CALL THE METHOD OF BASE CLASS IT IS POSSIBLE OR NOT CAN WE USE SCOPE RESOLUTION OPERATOR TO CALL OR JAVA NOT SUPPORTED THAT :: OPERATORE } }

3 Answers  


Is array synchronized in java?

0 Answers  


What is a deadlock ?

5 Answers  


What are the 4 versions of java?

0 Answers  


What is assembly used for?

0 Answers  


What is class forname used for?

0 Answers  


What is the difference between the continue and break statement?

2 Answers  


What is javac used for?

0 Answers  


Categories