Multiple Choice
When should base class members be declared protected?
A) When all clients should be able to access these members.
B) When these members are used only by member functions of this base class.
C) When these members should be available only to derived classes (and friends) , but not to other clients.
D) The protected access specified should never be used.
Correct Answer:

Verified
Correct Answer:
Verified
Q5: Which of the following is most likely
Q6: Which of the following is not a
Q7: When deriving a class from a protected
Q8: Which of the following statements about inheriting
Q9: Select the false statement regarding inheritance.<br>A) A
Q11: The is-a relationship represents.<br>A) Composition.<br>B) Inheritance.<br>C) Information
Q12: Which forms of inheritance are is-a relationships?<br>A)
Q13: Base class constructors and assignment operators:<br>A) Are
Q14: To declare class subClass a privately derived
Q15: From most restrictive to least restrictive, the