Multiple Choice
Which of the following is a valid definition of the derived class bClass?
A) class aClass: public bClass
{
//) ..
};
B) class bClass: public aClass
{
//) ..
};
C) class aClass::bClass
{
//) ..
};
D) class bClass::aClass
{
//) ..
}
Correct Answer:

Verified
Correct Answer:
Verified
Q13: The _ members of an object form
Q18: Consider the following class definitions: Which of
Q20: Consider the following class definitions: <img src="https://d2lvgg3v3hfg70.cloudfront.net/TB4784/.jpg"
Q24: C++ provides _ functions as a means
Q24: Suppose that bClass is a class. Which
Q26: OOP implements _.<br>A) UML<br>B) IPE<br>C) EIP<br>D) OOD
Q31: If the corresponding functions in the base
Q32: The private members of a base class
Q36: A derived class can directly access the
Q40: Which of the following is true about