Which of the following statements is false?

a. A subclass is often larger than its super class.
b. A superclass object is a subclass object.
c. The class following the extends keyword in a class declaration is the direct superclass of the class being declared.
d. Java uses interfaces to provide the benefits of multiple inheritance.

b. A super class object is a subclass object.

Computer Science & Information Technology

You might also like to view...

A(n) ________ system is a software system that offers tools needed to create, maintain, and use a database

Fill in the blank(s) with correct word

Computer Science & Information Technology

If the variable named ANSWER has a value of 1, what will be output after the instructions corresponding to the following pseudocode are executed?

``` IF ANSWER = 1 THEN Write “Hello” (ELSE) ENDIF IF ANSWER = 2 THEN Write “Goodbye” ELSE Write “Good day” ENDIF ``` a) Hello b) Goodbye c) Good day d) both a and c

Computer Science & Information Technology