Full form of MVC is :
2023
Full form of MVC is :
- A.
Memory Virtual Controller
- B.
Model View Container
- C.
Maximum View Container
- D.
Model View Controller
Attempted by 46 students.
Show answer & explanation
Correct answer: D
MVC (Model-View-Controller) is a software architectural pattern used to organize application code into three interconnected components:
Model – Manages data and business logic.
View – Displays data to the user.
Controller – Handles user input and coordinates between the Model and View.
This separation improves code maintainability, scalability, and reusability.