Describe the difference between composition and inheritance in OOP.

  • Composition allows creating complex objects by combining simpler ones, while inheritance allows a class to inherit properties and behavior from another class.
  • Composition and inheritance are two terms that mean the same thing in OOP.
  • Composition is not used in Object-Oriented Programming.
  • Composition is used for creating new objects, while inheritance is used for modifying existing objects.
Composition and inheritance are both mechanisms for reusing code in OOP, but they differ in their approach. Composition involves creating complex objects by combining simpler ones, whereas inheritance involves creating a new class based on an existing class, inheriting its properties and behavior.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *