131k views
1 vote
In MVC, the _________ manages the user input requests, controls the sequence of user interactions, selects desired views for output displays, and manages all initialization, instantiations, and registrations of other modules .

a. View
b. Controller
c. None of the others
d. Model

User Caleth
by
7.7k points

1 Answer

4 votes

Final answer:

In MVC architecture, the Controller is responsible for handling user input, managing user interactions, selecting views, and coordinating other modules within the application.

Step-by-step explanation:

In MVC (Model-View-Controller), the component that manages user input requests, controls the sequence of user interactions, selects desired views for output displays, and handles all initialization, instantiations, and registrations of other modules is the Controller. The Controller acts as an intermediary between the Model, which represents the application's data and business logic, and the View, which is the user interface that displays the data. Therefore, the correct answer to the question is 'b. Controller'.

User BoSkiv
by
8.2k points