Saved Bookmarks
| 1. |
What is the MVC design pattern? |
|
Answer» MVC stands for Model-View-Controller. This pattern is used for separating the APPLICATION’s concerns as listed below:
The above image represents how the request flow happens in the MVC Pattern. First, the Browser (client) sends request for a PAGE to the controller of the server. The controller invokes the model, retrieves the data and sends the response. The response is then sent to the view for rendering. The view will be rendered and it is sent back to the client for display. |
|