Multiple choice technology programming languages

Expansion of MVC architecture

  1. Model,Vision,Controller

  2. Medium,Vision,controller

  3. Model,View,Controller

  4. Model,View,Concept

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

MVC stands for Model-View-Controller, a design pattern that separates application logic into three interconnected components. The Model handles data and business logic, the View manages the UI presentation, and the Controller processes user input and coordinates Model and View interactions.