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.
Loading...
Related Quiz
- The CSS property _______ is used to control the size of the viewport.
- What does CI/CD stand for?
- You're designing a database for an e-commerce platform. What factors would you consider when choosing between MySQL and PostgreSQL as the database management system?
- What is the difference between BFS (Breadth-First Search) and DFS (Depth-First Search)?
- In database management, what is cardinality, and how does it impact query optimization?