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 |
Do we have pointers in java?
Is singleton class thread safe?
why using interface interface ?
Explain the hierarchy of java exception classes?
Compare Mutex and Semaphore in java.
How many bits are used to represent unicodde,ASCII,UTF-16 and UTF-8 characters?
How is it possible in java programming for two string objects with identical values not to be equal under the == operator?
Explain about interrupt() method of thread class ?
What do you understand by the term singleton?
What do you mean by an object in java?
Can a variable be local and static at the same time?
What should I import for arraylist in java?