What is MVC Architecture ?

devquora
devquora

Posted On: Feb 22, 2018

 

Model View Controller (MVC) is a design pattern used to perform changes in the application.
  • Model: Model is a term, which is referring to business or database. It stores the condition of the application. The model does not know the View and Controller segments.
  • View: View is referring to the Page Design Code. It must show the results of the client’s question. View modifies itself when any adjustments in the model happen.
  • Controller: Controller is alluding to navigational code. The controller will pick the best activity for every incoming request, produce the instance of that activity and execute that activity.

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    Struts Interview Questions

    What does the term Struts mean?

    Struts could be defined as open source programming that can be utilized for creating website pages that are java based...

    Struts Interview Questions

    How the flow of various requests happens in Struts Application?

    Struts Applications utilize the MVC designs, and the flow of demand occurs in a prescribed way: The user associated wit..

    Struts Interview Questions

    What are the benefits of the Struts system?

    The struts system is taking a shot at the MVC design. This ensures that the different layers of Struts are isolated app..