how can be object class inherited to all class in a program
when java does not support multiple inheritance??
Answers were Sorted based on User's Feedback
Answer / ashok yadav
A class always extends only one class. That is the Object
class or the class defined with the extends keyword. That
class in turn can extend also only one class until eventual
the Object class is reached.
| Is This Answer Correct ? | 4 Yes | 0 No |
Actuly in above it is the case of multilevel inheritance.and obj clas is super class which is extended by other classes tht is tree structure i.e 1 - * form . Multiple inheritance is wher 1 class is having 2 or more base class at same time ie *-1. So it is not multiple it is hiricle inheritnce.
| Is This Answer Correct ? | 0 Yes | 0 No |
Is arraylist ordered?
what is overloading and overriding with example?
What is the purpose of the enableevents() method?
What is final modifier?
What do you mean by scope of variable?
What is a flag value?
What is the benefit of singleton pattern?
What does this () mean in java?
when there is a need of jvm then how we can say that java is a platform independent language?
os is developed in c no java is more secured then c na why dont the os developed is developed using java
How to create com object in Java?
What is a "pure virtual" member function?