🎴 Flashcard Mode
Software Frameworks in Application Architecture
Card1 / 16
Mastered0
Review0
QuestionClick to flip
Which of the below is true about Inversion of control
AnswerClick to flip back
A
Allows the framework to have full control over the sequence of processing laying a strong foundation for work-flow processing
💡 Explanation:
Inversion of Control (IoC) allows frameworks to manage the flow of execution rather than the application code. The framework controls when and how your code is called, which enables workflow processing and separation of concerns. This is the opposite of traditional programs where your code controls the call sequence.