Describe MVC.
Utilisateur anonyme
MVC is a software design pattern to separate your view code from your business logic. It stands for Model View Controller. The model represents your data, and includes business logic. The view describes how things will be displayed to the user. The controller provides the interaction between the two other layers. This pattern allows your model and view to be reused in other applications.