Posts

Interview Q & A for Javascript.MVC and .Net

1) What is ASP.net ? A) Asp .net is web application framework developed by microsoft to build dynamic web aaplication and web services. 2)what is framework ? A)Framework is collection of classes. 3)What is web application ? A)the application that access from the Web browser. 4)First .netframework introduce ? A) year 2002 with 1.0 framwork. 5)What is controller ? A)Controller is nothing but a class that is intherit from the base controller class and class can contains function. 6)What is View ? A) view is display the result of controller method or give look to your application . 7)What is Model ? A)Model is collection table table and its property. 8)How the MVC Work ? A)The controller respond the URL request get the data from the model and hands it over to the view then view respond to the browser as output 9)What is viewdata and viewbag ? A)Viewdata and viewbag is use to pass data from the controller to view ? 10)What is action method in MVC ? A)Action is p...