1.
The V component in MVC is responsible for:
A
User interface
B
Security of the system
C
Business logic and domain objects
D
Translating between user interface actions/events and operations on the domain objects
View Answer
Correct Answer: A — User interface
Explanation:
The correct answer is User interface. In MVC (Model-View-Controller), the View handles the UI logic of the application. The Model manages data and business logic, while the Controller acts as an interface between Model and View, processing requests and returning the final output.
