Explain terms of MVC ?

  MVC is Model, View, Controller.
  
   1) Model:-  Model represents data and business logic. it maintains the data of the application. 
                      we can create an object of the model and using that object we can store
                      and retrieve data from the database

   
   2) View:- View is User interface means UI.
                   View Display data using a model to users and enable them to modify data.


   3) Controller:- Controller is a request handler.  The controller handles user requests.
                             a user interacts with the view. The controller renders View with
                             model data as a response.
                    


Comments

Post a Comment

Popular posts from this blog

How To Create an MVC application in Visual Studio 2019

ActionResult Return Type in MVC