Describe how the MVC works
Anónimo
Model, View, and Controller: a pattern for user interfaces. The Controller receives requests for the application, responding to the user input and performing interactions on the data model objects. The Model manages the data. The View then uses the data prepared by the Controller to generate what the user gets. I think it would be easier to understand and remember if it were called the MCV, instead of the MVC. That would make more sense.