TOP 50 ASP.NET MVC Interview Questions with Answers
Learn Microsoft Dot Net from Basics — Dot Net Tutorial for Freshers — Easy Guide 1) What is MVC? MVC is a pattern which is used to split the application’s implementation logic into three components: models, views, and controllers. 2) Can you explain Model, Controller and View in MVC? Model — It’s a business entity and it is used to represent the application data. Controller — Request sent by the user always scatters through controller and it’s responsibility is to redirect to the specific view using View() method. View — It’s the presentation layer of MVC. 3)Explain the new features added in version 4 of MVC (MVC4)? Following are features added newly – Mobile templates Added ASP.NET Web API template for creating REST based services. Asynchronous controller task support. Bundling the java scripts. Segregating the configs for MVC routing, Web API, Bundle etc. 4)Can you explain the page life cycle of MVC? Below are the processed followed in the sequence - ...