In the following statements,
class sports {};
class test : public student{};
class result : public test, public sports {};
//Here result class have implemented,
Options
- Hierarchical inheritance
- Multiple inheritance
- Multilevel inheritance
- Both b) and c)
CORRECT ANSWER : Both b) and c)
Write your comments