Answer the following statements true (T) or false (F)

1) An abstract class may be derived from another abstract class.
2) Objects of abstract base classes can be instantiated.
3) An abstract class cannot have instance data and non-abstract methods.
4) Attempting to instantiate an object of an abstract class is a logic error.

1) T
2) F
3) F
4) F

Computer Science & Information Technology

You might also like to view...

When the Sort Smallest to Largest option is selected from the Filter gallery, the Filter button displays ________

A) another up-arrow icon B) another down-arrow icon C) in red D) in green

Computer Science & Information Technology

What is the general form of the for each in array statement?

A. for (n < item : array++ ) {    Statements } B. for (item < n++ : array ) {    Statements } C. for (Type array : item ) {    Statements } D. for (Type item : array ) {    Statements }

Computer Science & Information Technology