What is the MVC pattern?
- A behavioral design pattern that lets you pass requests along a dynamic chain of receivers until one of them handles it.
- A creational design pattern that uses factory methods to deal with the problem of creating objects without specifying the exact class of object that will be created.
- A software architecture pattern that separates the representation of information from the user's interaction with it. The pattern defines three main components: the Model, the View, and the Controller.
- A structural design pattern that allows you to compose objects into tree structures to represent part-whole hierarchies.
A software architecture pattern that separates the representation of information from the user's interaction with it. The pattern defines three main components: the Model, the View, and the Controller.
Loading...