Multiple choice technology web technology

Which of the following component is used to encapsulate data and behaviours related to the data processed by the appliation

  1. Controller

  2. View

  3. Pattern

  4. Model

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

In the MVC (Model-View-Controller) architecture pattern, the Model component encapsulates both the data and the business logic or behaviors related to that data. The Controller handles user input and coordinates between Model and View, while the View is responsible for displaying the data. Patterns are general design solutions, not specific components.