What is the primary pattern upon which ASP.NET Core MVC is built?

  • Model-View-Controller (MVC)
  • Observer Pattern
  • Singleton Pattern
  • Factory Pattern
ASP.NET Core MVC (Model-View-Controller) is built upon the MVC architectural pattern. This pattern separates the application into three interconnected components: Model (data and business logic), View (UI presentation), and Controller (handles user input and controls the flow).
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *