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

Explain different ways of creating a thread?

0 Answers  


Under what conditions is an object’s finalize() method invoked by the garbage collector?

0 Answers  


Can you declare a private method as static?

0 Answers   TCS,


What do you mean by of string::valueof expression in java 8?

0 Answers  


what is main purpose of abstract class?

7 Answers  


How do you include a string in java?

0 Answers  


Given: 10. interface A { void x(); } 11. class B implements A { public void x() { } public voidy() { } } 12. class C extends B { public void x() {} } And: 20. java.util.List list = new java.util.ArrayList(); 21. list.add(new B()); 22. list.add(new C()); 23. for (A a:list) { 24. a.x(); 25. a.y();; 26. } What is the result? 1 Compilation fails because of an error in line 25. 2 The code runs with no output. 3 An exception is thrown at runtime. 4 Compilation fails because of an error in line 20.

3 Answers  


What is the purpose of stub and skeleton?

0 Answers  


What are inbuilt functions?

0 Answers  


What are filterstreams?

0 Answers  


What is the difference between inheritance and encapsulation?

0 Answers  


What is OOP Language?

0 Answers   Atos Origin,


Categories