What is the superclass of exception?
Answers were Sorted based on User's Feedback
Answer / krishnakanth
Object<--Throwable<--( Exception & Errors )
Exception<-- ( Checked & Unchecked )
RuntimeException<--Unchecked Exceptions
Checked Exceptions are not derived from the
RuntimeException.But it must caught by the user by using
try catch blocks.
| Is This Answer Correct ? | 9 Yes | 1 No |
Answer / sheetal panchal
java.lang.throwable
Throwable is the superclass for all exceptions and errors.
| Is This Answer Correct ? | 6 Yes | 0 No |
How to implement Singleton
What are hot spots in Java programming?
Is multiple inheritance allowed in Java? Why ?
What are the limitations for static method?
why we cannot declare static variable inside a static method
Write a function for palindrome and factorial and explain?
0 Answers Honeywell, Huawei, Zomato,
Why java is platform independent? Explain.
Explain an algorithm to find depth of a binary tree.
0 Answers Akamai Technologies,
What is difference between module and function?
What do you mean by multithreaded program?
What are the different data types in java?
There are 2 different ways to create an object. a)By using keyword "new" b)By using Class.forName ("className").newInstance(); What is the difference between these 2 methods.