InterviewSolution
Saved Bookmarks
| 1. |
Which of the following is true regarding the model-view- controller architecture?(a) The model corresponds to the business logic layer(b) The view defines the presentation of data(c) The controller receives events, executes actions on the model and returns a view(d) All of the mentioned |
|
Answer» The correct option is (d) All of the mentioned The explanation: In the model-view-controller architecture, the model corresponds to the business logic layer, the view defines the way data is presented and the controller receives events, executes actions on the model and returns a view. |
|