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

The Model-View-Controller (MVC) architectural pattern separates an application into three interconnected components: Model (data), View (presentation), and Controller (logic). This separation allows each part to be modified independently without affecting the others, meeting the requirement for individual modifiability. J2EE, PHP/JS, and ASP.NET are technologies, not architectural patterns that guarantee this separation.