Which statements are true?.
Select the two correct answers.
(b) and (e)
The Object class has a public method named equals, but it does not have any method named length.
Since all classes are subclasses of the Object class, they all inherit the equals()
method.
Thus, all Java objects have a public method named equals.
In Java, a class can only extend a single superclass, but there is no limit on how many classes can extend a superclass.