214k views
0 votes
In java, a class that is defined without an explicit extends clause ____.

2 Answers

5 votes
I think the answer is a subclass of object.
User Benjamin Wootton
by
8.1k points
5 votes
The answer is a subclass of Object. A Java subclass is a class which inherits a method or methods from a Java superclass. A Java class may be either a subclass, a superclass, both, or neither. In Java, the more specialized class that inherits from the superclass is called the subclass
User Jissell
by
7.9k points