InterviewSolution
| 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. 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. |
|