1.

What Do You Understand By Dependency Injection?

Answer»

DEPENDENCY Injection design pattern allows us to remove the hard-coded dependencies and MAKE our application loosely COUPLED, extendable and maintainable. We can implement dependency injection pattern to move the dependency resolution from compile-time to runtime.
Some of the benefits of using Dependency Injection are: SEPARATION of Concerns, Boilerplate Code reduction, Configurable COMPONENTS and easy unit testing.

Dependency Injection design pattern allows us to remove the hard-coded dependencies and make our application loosely coupled, extendable and maintainable. We can implement dependency injection pattern to move the dependency resolution from compile-time to runtime.
Some of the benefits of using Dependency Injection are: Separation of Concerns, Boilerplate Code reduction, Configurable components and easy unit testing.



Discussion

No Comment Found