The V component in MVC is responsible for:
User interface
Security of the system
Business logic and domain objects
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.
