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 do you know if a value is nan?
Highest level event class of the event-delegation model?
Can an abstract class have a constructor?
What is the primary benefit of encapsulation?
write java code to print second max number in the array
How many static init can you have?
What does the append?
Can we overload destructor in java?
What's the difference between an abstract class and interface in java?
. Differentiate between instance and local variables.
How can you generate random numbers in java?
I have a sorting issue with a Hashmap. My constraint is that I MUST use the Hashmap and work with existing code. I do a database query and place the results in a Hashmap. When I iterate thru the Hashmap, it loses the original alphabetical sorting done by the database. So, my problem is that I must sort the results coming out of the Hashmap which is then placed into another class.