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 |
How does the garbage collector works in java?
What is left shift and right shift?
wat is final...? wat is finally...? wat is finalize....? difference between " final and finally and finalize "...?
give an example for encapsulation?
What is the method to declare member of a class static?
What is charat ()?
What is a hashmap used for?
Can constructor be protected in java?
why abstract class does not have object creation
Difference between ?System.out.println? and ?System.error.println??
why interfaces are faster than abstract classes?
Is intellij better than eclipse?