MVC is an approach for developing interactive application ie it results in events through user interactions.Model is responsible for holding the application state,View is for displaying the current model and controller handles the event.
The main aim of MVC architecture is to separate the business logic and application data from the presentation data to the user.
Model View Controller or MVC as it is popularly called, is a software design pattern for developing web applications. A Model View Controller pattern is made up of the following three parts:
- Model - The lowest level of the pattern which is responsible for maintaining data.
- View - This is responsible for displaying all or a portion of the data to the user.
- Controller - Software Code that controls the interactions between the Model and View.

No comments:
Post a Comment
Thanks....