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 |
Which software is used for java programming?
How many threads can I run java?
What is string value?
Can a constructor have different name than a class name in java?
What is singleton class in java and how can we make a class singleton?
what is aberivation of java?
What is the difference between interpreter and compiling ?
Can we use string in the switch case?
Can you tell me range of byte?
Does the order of public and static declaration matter in main method?
Explain features of interfaces in java?
Can we override private method in java?