0 votes
91 views
in General by (0 points)
closed by
Match the Single responsibility, Open-closed, Liskov substitution Interface segregation, and Dependency inversion or SOLID principles of object-oriented design to their descriptions
closed

1 Answer

0 votes
by (0 points)
 
Best answer
Functions that use references to base classes should also be able to use child classes - Liskov Substitution

Clients shouldn't be forced to depend on interfaces that they don't use- interface segregation principal

A class should only have one reason to change - single responsibility principal

Classes may be extended but not modified - open closed principal

High-level modules shouldn't depend on low-level modules - dependacy inversion principal

Related questions

0 votes
1 answer 97 views
0 votes
1 answer 151 views
0 votes
1 answer 65 views

2.8k questions

2.8k answers

0 comments

76 users

Welcome to MCQ Village Q&A, where you can ask questions and receive answers from other members of the community.
...