🎴 Flashcard Mode

ASP.NET MVC Fundamentals

Card1 / 15
Mastered0
Review0
QuestionClick to flip

What is MVC?

AnswerClick to flip back
A
Model, View, Controller
💡 Explanation:

MVC (Model-View-Controller) is a design pattern separating application logic into three interconnected components. Model handles data and business logic. View handles display and user interface. Controller handles user input and updates Model/View. 'Viewer' and 'Control' are not the standard terminology.

Change Mode