There is no private or protected inheritance in C#.NET.
Options
A. True
B. False
Correct Answer
True
Inheritance problems
Search Results
1. If a base class contains a member function func(), and a derived class does not contain a function with this name, an object of the derived class cannot access func().
It depends upon how the function
func() has been defined in the base class. If the function
func() is defined public in base class then an object of the derived class can access the function
func().
2. It is illegal to make objects of one class as members of another class.
3. The way a derived class member function can access base class public members, the base class member functions can access public member functions of derived class.
Multiple inheritance means deriving a class from more than one classes. On the other hand, multiple levels of inheritance means a class has been derived from a base class and the base class itself has been derived from another base class. Multiple inheritance is not permitted in C#.NET.
6. Creating a derived class from a base class requires fundamental changes to the base class.