The Model-View-Controller (MVC) architecture separates
2024
The Model-View-Controller (MVC) architecture separates
- A.
User interface components and data storage
- B.
Data, presentation logic, and user interaction
- C.
Client-side and server-side functionalities
- D.
Static content and dynamic elements
Attempted by 67 students.
Show answer & explanation
Correct answer: B
The Model-View-Controller (MVC) architecture separates application logic into three interconnected components. The Model manages data and business rules, the View handles presentation and user interface, while the Controller processes user input and coordinates between Model and View. This separation enables independent development and maintenance of each component.