Multiple choice technology architecture

Which pattern is applied by the bean factory to seperates the configuration from the actual application code

  1. Aspect Oriented Programming

  2. Inversion Of Control

  3. Object Oriented Programming

  4. Simple Pattern

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

Inversion of Control (IoC) is the design pattern where the Bean Factory manages object creation and dependency injection, separating configuration metadata from actual business logic code. This promotes loose coupling and easier testing.