Multiple choice technology web technology

MVC architecture is used commonly because

  1. The addition, editing, and removal of interfaces is simple

  2. Changes made to the logic control are easy

  3. Helps developers avoid repeating common code

  4. All of the above

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

MVC architecture separates concerns into three components, making it easier to modify the user interface (View), control logic (Controller), and business logic (Model) independently. This separation also promotes code reuse and helps developers avoid repeating common code across the application.