Q:

If hierarchical inheritance requires to inherit more than one class to single class, which syntax is correct? ( A,B,C are class names )

0

If hierarchical inheritance requires to inherit more than one class to single class, which syntax is correct? ( A,B,C are class names )


  1. hierarchical class A: public B, public C
  2. multiple class A: public B, public C
  3. many class A: public B, public C
  4. class A: public B, public C

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

(d).class A: public B, public C

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

OBJECT ORIENTED PROGRAMMING INHERITANCE AND ITS TYPES MCQ

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
What is the maximum number of classes allowed in h... >>
<< The private member’s are made public to all the ...