Which Among The Following Is Correct For Multiple Inheritance #708
Which among the following is correct for multiple inheritance?
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: Inheritance - Quiz No.1.
Which among the following is correct for multiple inheritance?
class student{public: int marks;}s; class stream{int total;}; class topper:public student, public stream{ };
class student{int marks;}; class stream{ }; class topper: public student{ };
class student{int marks;}; class stream:public student{ };
class student{ }; class stream{ }; class topper{ };