adplus-dvertising
frame-decoration

Question

The code class Descendant : virtual public Ancestor indicates that

a.

the members of Ancestor will be included more than once in Descendant

b.

the members of Ancestor will be included only once in Descendant

c.

the members of Descendant will be included more than once in Ancestor

d.

the members of Descendant will be included only once in Ancestor

Answer: (b).the members of Ancestor will be included only once in Descendant

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. The code class Descendant : virtual public Ancestor indicates that

Similar Questions

Discover Related MCQs

Q. If a class will serve as a base class, most often the base class data members are

Q. A default constructor

Q. Compared with the classes from which they are derived, inherited classes may have _____

Q. A constructor initialization list is preceded by

Q. In C++, a function contained within a class is called

Q. Which of the following is the scope resolution operator?

Q. If you want only one memory location to be reserved for a class variable, no matter how many objects are instantiated, you should declare the variable as________

Q. Which of the following are never inherited?

Q. A child class _____ exist if there is no parent class

Q. A constructor that accepts __________ parameters is called the default constructor.

Q. What happens when a class with parameterized constructors and having no default constructor is used in a program and we create an object that needs a zero-argument constructor?

Q. Can a class have virtual destructor?

Q. Destructor has the same name as the constructor and it is preceded by ______ .

Q. For automatic objects, constructors and destructors are called each time the objects

Q. Which constructor function is designed to copy objects of the same class type?

Q. Which of the following statement is correct?

Q. Which of the following statement is incorrect?

Q. When are the Global objects destroyed?

Q. Copy constructor must receive its arguments by __________ .

Q. A function with the same name as the class, but preceded with a tilde character (~) is called __________ of that class.