Interview Questions Flashcards
asp.net, tsql, psql, entity framework, angularjs (71 cards)
What is ASP.NET MVC?
ASP.NET MVC is a web application Framework. It is light weight and highly testable Framework. MVC separates application into three components — Model, View and Controller.
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.
Can you explain the page life cycle of MVC?
App initialization
Routing
Instantiate and execute controller
Locate and invoke controller action
Instantiate and render view.
What are the advantages of MVC over ASP.NET?
Provides a clean separation of concerns among UI (Presentation layer), model (Transfer objects/Domain Objects/Entities) and Business Logic (Controller).
Easy to UNIT Test.
Improved reusability of model and views. We can have multiple views which can point to the same model and vice versa.
Improved structuring of the code.
What is Separation of Concerns in ASP.NET MVC?
It’s is the process of breaking the program into various distinct features which overlaps in functionality as little as possible. MVC pattern concerns on separating the content from presentation and data-processing from content.
What is Razor View Engine?
Razor is the first major update to render HTML in MVC 3. Razor was designed specifically for view engine syntax. Main focus of this would be to simplify and code-focused templating for HTML generation. Below is the sample of using Razor:
@model MvcMusicStore.Models.Customer @{ViewBag.Title = “Get Customers”;} <div class="”cust”"> <h3><em>@Model.CustomerName</em> </h3></div>
What is the use of ViewModel in MVC?
ViewModel is a plain class with properties, which is used to bind it to strongly typed view. ViewModel can have the validation rules defined for its properties using data annotations.
What you mean by Routing in MVC?
Routing is a pattern matching mechanism of incoming requests to the URL patterns which are registered in route table. Class — “UrlRoutingModule” is used for the same process.
What are Actions in MVC?
Actions are the methods in Controller class which is responsible for returning the view or json data. Action will mainly have return type — “ActionResult” and it will be invoked from method — “InvokeAction()” called by controller.
Explain JSON Binding?
JavaScript Object Notation (JSON) binding support started from MVC3 onwards via the new JsonValueProviderFactory, which allows the action methods to accept and model-bind data in JSON format. This is useful in Ajax scenarios like client templates and data binding that need to post data back to the server.
Explain Bundle.Config in MVC4?
“BundleConfig.cs” in MVC4 is used to register the bundles by the bundling and minification system. Many bundles are added by default including jQuery libraries like — jquery.validate, Modernizr, and default CSS references.
How route table has been created in ASP.NET MVC?
Method — “RegisterRoutes()” is used for registering the routes which will be added in “Application_Start()” method of global.asax file, which is fired when the application is loaded or started.
Which are the important namespaces used in MVC?
System.Web.Mvc
System.Web.Mvc.Ajax
System.Web.Mvc.Html
System.Web.Mvc.Async
What is ViewData?
Viewdata contains the key, value pairs as dictionary and this is derived from class — “ViewDataDictionary“. In action method we are setting the value for viewdata and in view the value will be fetched by typecasting.
What is the difference between ViewBag and ViewData in MVC?
ViewBag is a wrapper around ViewData, which allows to create dynamic properties. Advantage of viewbag over viewdata will be –
In ViewBag no need to typecast the objects as in ViewData.
ViewBag will take advantage of dynamic keyword which is introduced in version 4.0. But before using ViewBag we have to keep in mind that ViewBag is slower than ViewData.
Explain TempData in MVC?
TempData is again a key, value pair as ViewData. This is derived from “TempDataDictionary” class. TempData is used when the data is to be used in two consecutive requests, this could be between the actions or between the controllers. This requires typecasting in view.
What are HTML Helpers in MVC?
HTML Helpers are like controls in traditional web forms. But HTML helpers are more lightweight compared to web controls as it does not hold viewstate and events.
HTML Helpers returns the HTML string which can be directly rendered to HTML page. Custom HTML Helpers also can be created by overriding “HtmlHelper” class.
@Html.ActionLink(“Create New”, “Create”) would generate anchor tag <a>Create New</a>.
What are AJAX Helpers in MVC?
AJAX Helpers are used to create AJAX enabled elements like as Ajax enabled forms and links which performs the request asynchronously and these are extension methods of AJAXHelper class which exists in namespace — System.Web.Mvc.
What is Layout in MVC?
Layout pages are similar to master pages in traditional web forms. This is used to set the common look across multiple pages. In each child page we can find — /p>
@{
Layout = “~/Views/Shared/TestLayout1.cshtml”;
}
This indicates child page uses TestLayout page as it’s master page.
Can you explain RenderBody and RenderPage in MVC?
RenderBody is like ContentPlaceHolder in web forms. This will exist in layout page and it will render the child pages/views. Layout page will have only one RenderBody() method. RenderPage also exists in Layout page and multiple RenderPage() can be there in Layout page.
What is ViewStart Page in MVC?
This page is used to make sure common layout page will be used for multiple views. Code written in this file will be executed first when application is being loaded.
Explain the methods used to render the views in MVC?
Below are the methods used to render the views from action -
View() — To return the view from action.
PartialView() — To return the partial view from action.
RedirectToAction() — To Redirect to different action which can be in same controller or in different controller.
Redirect() — Similar to “Response.Redirect()” in webforms, used to redirect to specified URL.
RedirectToRoute() — Redirect to action from the specified URL but URL in the route table has been matched.
How we can call a JavaScript function on the change of a Dropdown List in MVC?
function DrpIndexChanged() { }
Invoke the method:
x.SelectedProduct, new SelectList(Model.Customers, “Value”, “Text”), “Please Select a Customer”, new { id = “ddlCustomers”, onchange=” DrpIndexChanged ()” })%>
<%=Html.DropDownList(“title”, Model.Titleitems, new{@onchange = “YourJsFuncHere()”} )%>
What are Validation Annotations?
Data annotations are attributes which can be found in the “System.ComponentModel.DataAnnotations” namespace. These attributes will be used for server-side validation and client-side validation is also supported. Four attributes — Required, String Length, Regular Expression and Range are used to cover the common validation scenarios.
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
[Required] [StringLength(10)] public string Name { get; set; }