Multiple choice technology web technology

To implement business Logic seperately and independently which MVC pattern should be used?

  1. MVC 1

  2. MVC 2

  3. MVC 3

  4. None

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

MVC 2 pattern separates business logic independently from presentation. In MVC 1 (Model 1), the view and controller are combined, making business logic tightly coupled with presentation. MVC 2 (Model 2) introduced a separate controller layer, enabling independent business logic implementation. MVC 3 is not a standard MVC pattern variant.