Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

1. In the MVC pattern, models are A. user interface (UI) components B. classes t

ID: 3909558 • Letter: 1

Question

1. In the MVC pattern, models are

A. user interface (UI) components

B. classes that deal with user interaction

C. classes that process user input

D. classes that deal with data

E. clases that respond to user input

2. Which of the following is NOT true about the MVC pattern

A. Thew view can refer to the model but shouldnt contain any data processing

B. The view is seen by the user, but doesn't handle the user's requests

C. The view helps the user invoke the methods of the controller

D. The view presented tot he user is determined by the controller

E. The view handles the user's requests

3. In an ASP.NET MVC web application, the default home page is the

A. The home view of the index controller

B. The index view of the home controller

C. The controller view of the home model

D. The model view of the home controller

E. The home controller of the view model

Explanation / Answer

Answer is as follows:

1) Models have logic to update controller if its data changes. So it deals with data.

So the correct option is D.

2) The Views are user interface and don't handle user requests. So The views handles the user's request is not true.

So correct option is E

3) The correct option is C i.e. Controller View of Home Model.

if there is any query please ask in comments...