Model–View–Controller (MVC) is an architecture that separates the representation of information from the user’s interaction with it.

MVC

The model consists of application data and business rules, and the controller mediates input, converting it to commands for the model or view. A view can be any output representation of data, such as a chart or a diagram. Multiple views of the same data are possible, such as a pie chart for management and a tabular view for accountants. The central idea behind MVC is code reusability and separation of concerns.

(source: http://en.wikipedia.org/wiki/Model-view-controller)

MVC: model – view – controller
Tagged on:             

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.