Google News
logo
AngularJS - Interview Questions
What is MVC ?
In the MVC pattern, the different aspects of the application are broken into components to separate responsibilities. The Model contains the data and logic, the View contains the visual layout and presentation is following :

Model : It is the lowest level of the pattern responsible for maintaining data.

View : It is responsible for displaying all or a portion of the data to the user.

Controller : It is a software Code that controls the interactions between the Model and View.

Advertisement