Multiple choice technology architecture

An enterprise need to create an Web application in such a way that each parts can be easily modified individually.

  1. USE J2EE Architecture

  2. Model-View-Controller

  3. USE PHP and Javascript

  4. ASP.NET Web application

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

MVC (Model-View-Controller) is an architectural pattern that separates an application into three main components: Model (data), View (presentation), and Controller (logic). This separation allows each component to be developed, modified, and tested independently without affecting the others. J2EE, PHP/Javascript, and ASP.NET are technologies or platforms, not architectural patterns for separation of concerns.