Adherence to the _____ SOLID principle ensures that the software entities should depend on abstractions and not on concretions.

  • Dependency Inversion
  • Liskov Substitution
  • Open-Closed
  • Single Responsibility
Adherence to the Dependency Inversion SOLID principle ensures that software entities should depend on abstractions (e.g., interfaces) rather than concrete implementations. This promotes flexibility, extensibility, and the ease of swapping out components without affecting the system's core.
Add your answer
Loading...

Leave a comment

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