If Hierarchical Inheritance Requires To Inherit More Than One #803
If hierarchical inheritance requires to inherit more than one class to single class, which syntax is correct? (A, B, C are class names)
This multiple choice question (MCQ) is related to the book/course
gs gs111 OOP Object Oriented Programming Java.
It can also be found in
gs gs111 Inheritance & its Types - OOPs MCQ: Hybrid Inheritance - Quiz No.1.
If hierarchical inheritance requires to inherit more than one class to single class, which syntax is correct? (A, B, C are class names)
hierarchical class A: public B, public C
multiple class A: public B, public C
many class A: public B, public C
class A: public B, public C