C# Programming - Inheritance - Discussion

Discussion Forum : Inheritance - General Questions (Q.No. 1)
1.
Which of the following can be facilitated by the Inheritance mechanism?
  1. Use the existing functionality of base class.
  2. Overrride the existing functionality of base class.
  3. Implement new functionality in the derived class.
  4. Implement polymorphic behaviour.
  5. Implement containership.
1, 2, 3
3, 4
2, 4, 5
3, 5
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
13 comments Page 2 of 2.

Vaithi said:   9 years ago
Yes, It's like a using already existing property from the parent class, add new property by child class which overrides the property too.

Tadewos said:   8 years ago
In Inheritance, derived class used the properties and methods defined in the Base class.

Samntha said:   8 years ago
Derived class can implement the methods and properties in the base class.


Post your comments here:

Your comments will be displayed after verification.