88.4k views
3 votes
Which of the following statements is false? Group of answer choices A subclass is often smaller than its superclass. A superclass object is a subclass object. The class following the extends keyword in a class declaration is the direct superclass of the class being declared. Java uses interfaces to provide the benefits of multiple inheritance.

1 Answer

5 votes

Answer:

A superclass object is a subclass object.

Step-by-step explanation:

By definition, in OOP (Object Oriented Programming), the inheritance concept defines two kind of classes:

A subclass, this is also known as the child class, which inherits from another class.

A superclass, this is also known as the parent class, which other classes inherit (or extends) from.

User Rockaway
by
8.5k points