MODEL VIEW CONTROLLER

HOME            ABOUT US        CONTACT



● Model – The model holds and manipulates domain data (sometimes called business logic or the back end).
● View – A view renders some or all of the data contained within the model.
● Controller – The controller takes input from the user and uses it to update the model and to determine when to redraw the view(s).
MVC is all about separating concerns. The model and views separate the data from the views and the controller and the view separate user input from the views.
TO GET FULL PAPER CLICK HERE :: paper1, paper2, paper3