357 views
0 votes
0 votes

The V components in MVC are responsible for :

  1. User interface.
     
  2. Security of the system.
     
  3. Business logic and domain objects.
     
  4. Translating between user interface actions / events and operations on the domain objects.

1 Answer

Best answer
0 votes
0 votes

Ans : 1. User Interface

 

MVC : Model View Controller Architecture. Components are : 

Model : It is the application's dynamic data structure, independent of the user interface.It is responsible for storing and retrieving data from the database, and it is also responsible for validating the data.

View :  Views are the components that display the application’s user interface (UI). Typically, this UI is created from the model data

Controller : Controllers are the components that handle user interaction, work with the model, and ultimately select a view to render that displays UI. In an MVC application, the view only displays information; the controller handles and responds to user input and interaction

 

selected by

Related questions