Which class is extended by all other classes?
Answers were Sorted based on User's Feedback
Answer / debapriya patra
Everybody Knows abt the answer.Bcz its a very easy
question."Object" class is the super class of each and every
class.Sp by default every class extends the "Object" class
| Is This Answer Correct ? | 17 Yes | 1 No |
Answer / kishor kommula
Every class by default extends Object.
Object class consist of various methods such as
clone,toString,getClass,finalize,notify,wait etc..
If you want to print your own object to the console you
must override the toString method...
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / anjan singh
the answer is already given above. let me ask u another
question related to this one
If every class already extends Object class , how can we
still extend another class??
eg.:
class B extends A{}
if class B already extends Object class , how can it extend
class A?
| Is This Answer Correct ? | 2 Yes | 0 No |
How can you share data between two thread in Java?
What is the tradeoff between using an unordered array versus an ordered array?
What is a java string?
What class is used to implement a Throwable array?
What is an iterator java?
Where can I find jdk in my computer?
Why is stringbuffer called mutable?
What is ternary operator?
How do I compare two strings in word in java?
How large is a boolean?
Can sleep() method causes another thread to sleep?
Is nullpointerexception checked or unchecked?