---
title: "Explain MVC pattern?"  
description: "Explain MVC pattern?"  
author: "Anonymous User"  
published: 2011-09-07  
updated: 2020-09-17  
canonical: https://www.mindstick.com/interview/1210/explain-mvc-pattern  
category: "asp.net mvc"  
tags: ["asp.net mvc"]  
reading_time: 1 minute  

---

# Explain MVC pattern?

MVC stands for Model View Controller, MVC is a software architecture, currently considered an architectural pattern used in software engineering. The pattern isolates "Buisiness logic" (the application logic for the user) from input and presentation (GUI), permitting independent development, testing and maintenance of each. An MVC application may be a collection of model/view/controller triplets, each responsible for a different UI element.

## Answers

### Answer by Anonymous User

MVC stands for Model View Controller, MVC is a software architecture, currently considered an architectural pattern used in software engineering. The pattern isolates "Buisiness logic" (the application logic for the user) from input and presentation (GUI), permitting independent development, testing and maintenance of each. An MVC application may be a collection of model/view/controller triplets, each responsible for a different UI element.


---

Original Source: https://www.mindstick.com/interview/1210/explain-mvc-pattern

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
