Chapter 15 Quiz

Chapter 15 Quiz

University

6 Qs

quiz-placeholder

Similar activities

OBJECT ORIENTED PROGRAMMING WITH JAVA

OBJECT ORIENTED PROGRAMMING WITH JAVA

University

10 Qs

Object Oriented Programming

Object Oriented Programming

University

9 Qs

QUIZ PBO R5L

QUIZ PBO R5L

University

10 Qs

QUIZ PBO R5I

QUIZ PBO R5I

University

10 Qs

Inheritance

Inheritance

University

10 Qs

Object/Abstract/Final in JAVA

Object/Abstract/Final in JAVA

University

10 Qs

Inheritance

Inheritance

University

7 Qs

FinalQuiz3_ADTL12C

FinalQuiz3_ADTL12C

University

9 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 {    ...};