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 separates concerns into Model (business logic), View (UI), and Controller (control logic). This separation makes it easy to add/edit/remove interfaces (View changes), modify control logic (Controller changes), and avoids code repetition through reusable components.