Everyone know about every Class in java should be extends from Objects Class.
Let me explain with example there are two classes A and B.
Class A extends B {
}
Note: Every Class should inherited from Object class by default. So we can say class A extends from two Classes One is 'Class B' and Second is 'Class Object'.
I am confused about Object class extends of every class.