We can derive from a base class even if it is present in an assembly.
2. 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.
4. 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().
5. There is no private or protected inheritance in C#.NET.