Chapter 15 Quiz

Chapter 15 Quiz

University

6 Qs

quiz-placeholder

Similar activities

P1_APLab2Quiz_B3B4

P1_APLab2Quiz_B3B4

University

10 Qs

Python Generators

Python Generators

10th Grade - University

10 Qs

FinalQuiz3_ADTL12C

FinalQuiz3_ADTL12C

University

9 Qs

AP CSA Inheritance Polymorphism

AP CSA Inheritance Polymorphism

University

10 Qs

JAVA FOR ANDROID-JAVA

JAVA FOR ANDROID-JAVA

University

10 Qs

Week 9  C# (for Java programmers)

Week 9 C# (for Java programmers)

University

10 Qs

UML-2020-158225-Week8-Class and Method Design-NTY

UML-2020-158225-Week8-Class and Method Design-NTY

University

10 Qs

science day competition (Software Engineering)

science day competition (Software Engineering)

University

10 Qs

Chapter 15 Quiz

Chapter 15 Quiz

Assessment

Quiz

Computers

University

Medium

Created by

Albert Gorup

Used 1+ times

FREE Resource

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A constructor can be redefined.

True

False

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In the following class definition, what is the name of the subclass?

class Rose: public Flower { ... };

Rose

Flower

Rose Flower

None of them.

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

When there are several classes that have many common data attributes/fields, it is better to write a(n) ________ to hold all the general data.

superclass

subclass

object

method

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

To redefine a function, the function must be defined in the derived class using the same signature and return type as in its base class.

True

False

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The final keyword can be used to prevent a function to be overridden or to declare a constant.

True

False

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is the correct syntax for defining a class named Table, which inherits from the class named Furniture?

class Table(Furniture);

class Furniture: public Table {    ...};

class Table(Furniture) {    ...};

class Table: public Furniture {    ...};