MVC Developer Question:

Download Job Interview Questions and Answers PDF

Please explain what does Model, View and Controller represent in an MVC application?

MVC Developer Interview Question
MVC Developer Interview Question

Answer:

Model: Model represents the application data domain. In short the applications business logic is contained with in the model.

View: Views represent the user interface, with which the end users interact. In short the all the user interface logic is contained with in the UI.

Controller: Controller is the component that responds to user actions. Based on the user actions, the respective controller, work with the model, and selects a view to render that displays the user interface. The user input logic is contained with in the controller.

Download MVC Developer Interview Questions And Answers PDF

Previous QuestionNext Question
Tell us what is Output Caching in MVC?Explain me the meaning of Unobtrusive JavaScript?