Java run-time system generates What class of exceptions?

Answers were Sorted based on User's Feedback



Java run-time system generates What class of exceptions?..

Answer / venkatesh

unchecked exceptions

Is This Answer Correct ?    3 Yes 0 No

Java run-time system generates What class of exceptions?..

Answer / luckystarjava

JVM checks only un-checked exception. the exception is thown
by exception Class

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More Core Java Interview Questions

What do you mean by Remote procedure call?

2 Answers  


what invokes a threads run() method? : Java thread

0 Answers  


Which is the class in java?

0 Answers  


How to extract HashMap values?

5 Answers   Marlabs,


C and C++ has constructors and distructors, why does Java does not have distructors?

1 Answers   T3 Softwares,






Is Java a dying language?

0 Answers  


What is the difference between a window and a frame in java programming?

0 Answers  


What do you mean by thread safe?

0 Answers  


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  


How will you add panel to a frame?

0 Answers  


What is stream api in java8?

0 Answers  


What is the difference between static binding and dynamic binding?

0 Answers  


Categories