MVC Interview Questions - Tutorialspoint
MVC Interview Questions - Tutorialspoint
Advertisements
Dear readers, these ASP.NET MVC Interview Questions have been designed specially to get you
acquainted with the nature of questions you may encounter during your interview for the subject of ASP.NET
MVC. As per my experience good interviewers hardly plan to ask any particular question during your
interview, normally questions start with some basic concept of the subject and later they continue based on
further discussion and what you answer:
ASP.Net MVC is a pattern which is used to split the application's implementation logic into three components
i.e. models, views, and controllers.
Model : It is basically a business entity which is used to represent the application data. Controller : The
Request which is 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 ASP.Net MVC.
Following are features added newly : Mobile templates Added ASP.NET Web API template for creating REST
based services. Asynchronous controller task support. Bundling of the java scripts. Segregating the configs for
ASP.Net MVC routing, Web API, Bundle etc.
It is the process of breaking the program into various distinct features which overlaps in functionality as little
as possible. ASP.Net MVC pattern concerns on separating the content from presentation and data-processing
from content.
https://www.tutorialspoint.com/cgi-bin/printpage.cgi 1/12
17/05/2019 ASP.NET MVC Interview Questions - tutorialspoint
Razor is the first major update to render HTML in ASP.Net 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:
This is a general term that conveys a general philosophy, similar to the term REST
RepresentationalS tateT ransf er. Unobtrusive JavaScript doesn't inter mix JavaScript code in your page
markup. Eg : Instead of using events like onclick and onsubmit, the unobtrusive JavaScript attaches to
elements by their ID or class based on the HTML5 data- attributes.
View Model is a plain class with properties, which is used to bind it to strongly typed view. View Model can
have the validation rules defined for its properties using data annotations.
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.
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.
ASP.NET Web API supports this type routing. This is introduced in ASP.Net MVC5. In this type of routing,
attributes are being used to define the routes. This type of routing gives more control over classic URI
Routing. Attribute Routing can be defined at controller level or at Action level like :
https://www.tutorialspoint.com/cgi-bin/printpage.cgi 2/12
17/05/2019 ASP.NET MVC Interview Questions - tutorialspoint
);
}
JavaScript Object Notation J S ON binding support started from ASP.Net 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.
Dependency Resolver again has been introduced in ASP.Net MVC3 and it is greatly simplified the use of
dependency injection in your applications. This turn to be easier and useful for decoupling the application
components and making them easier to test and more configurable.
"BundleConfig.cs" in ASP.Net 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.
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.
System.Web.ASP.Net MVC
System.Web.ASP.Net MVC.Ajax
System.Web.ASP.Net MVC.Html
System.Web.ASP.Net 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.
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.
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.
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
https://www.tutorialspoint.com/cgi-bin/printpage.cgi 3/12
17/05/2019 ASP.NET MVC Interview Questions - tutorialspoint
be directly rendered to HTML page. Custom HTML Helpers also can be created by overriding "HtmlHelper"
class.
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.ASP.Net 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.
Section are the part of HTML which is to be rendered in layout page. In Layout page we will use the below
syntax for rendering the HTML :
@RenderSection("TestSection")
If any child page does not have this section defined then error will be thrown so to avoid that we can render
the HTML like this :
@RenderSection("TestSection", required: false)
https://www.tutorialspoint.com/cgi-bin/printpage.cgi 4/12
17/05/2019 ASP.NET MVC Interview Questions - tutorialspoint
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.
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.
Below are the methods used to render the views from action -
ActionResult is used to represent the action method result. Below are the subtypes of ActionResult :
ViewResult
PartialViewResult
RedirectToRouteResult
RedirectResult
JavascriptResult
JSONResult
FileResult
HTTPStatusCodeResult
In ASP.Net MVC all public methods have been treated as Actions. So if you are creating a method and if you
do not want to use it as an action method then the method has to be decorated with "NonAction" attribute as
shown below :
[NonAction]
public void TestMethod()
{
// Method logic
}
"ActionName" attribute can be used for changing the action name. Below is the sample code snippet to
demonstrate more :
https://www.tutorialspoint.com/cgi-bin/printpage.cgi 5/12
17/05/2019 ASP.NET MVC Interview Questions - tutorialspoint
[ActionName("TestActionNew")]
public ActionResult TestAction()
{
return View();
}
So in the above code snippet "TestAction" is the original action name and in "ActionName" attribute, name -
"TestActionNew" is given. So the caller of this action method will use the name "TestActionNew" to call this
action.
Unlike code expressions that are evaluated and sent to the response, it is the blocks of code that are executed.
This is useful for declaring variables which we may be required to be used later.
@{
int x = 123;
string y = "aa";
}
The HelperPage.IsAjax property gets a value that indicates whether Ajax is being used during the request of
the Web page.
How we can call a JavaScript function on the change of a Dropdown List in ASP.Net MVC?
function DrpIndexChanged() { }
This method is used to render the specified partial view as an HTML string. This method does not depend on
any action methods. We can use this like below : @Html.Partial" T estP artialV iew "
What is Html.RenderPartial?
Result of the method : "RenderPartial" is directly written to the HTML response. This method does not return
anything void. This method also does not depend on action methods. RenderPartial method calls "Write"
internally and we have to make sure that "RenderPartial" method is enclosed in the bracket. Below is the
sample code snippet : @{Html.RenderPartial" T estP artialV iew " ; }
https://www.tutorialspoint.com/cgi-bin/printpage.cgi 6/12
17/05/2019 ASP.NET MVC Interview Questions - tutorialspoint
"RouteConfig.cs" holds the routing configuration for ASP.Net MVC. RouteConfig will be initialized on
Application_Start event registered in Global.asax.
Scaffolding in ASP.NET ASP.Net MVC is used to generate the Controllers,Model and Views for create, read,
update, and delete C RU D functionality in an application. The scaffolding will be knowing the naming
conventions used for models and controllers and views.
Empty
Create
Delete
Details
Edit
List
Can a view be shared across multiple controllers? If Yes, How we can do that?
Yes we can share a view across multiple controllers. We can put the view in the "Shared" folder. When we
create a new ASP.Net MVC Project we can see the Layout page will be added in the shared folder, which is
because it is used by multiple child pages.
Using this default route - {resource}.axd/{*pathInfo}, we can prevent the requests for the web resources files
like - WebResource.axd or ScriptResource.axd from passing to a controller.
Can we add constraints to the route? If yes, explain how we can do it?
Below are the two types of extensions razor view can have :
https://www.tutorialspoint.com/cgi-bin/printpage.cgi 7/12
17/05/2019 ASP.NET MVC Interview Questions - tutorialspoint
PartialView is similar to UserControls in traditional web forms. For re-usability purpose partial views are
used. Since it's been shared with multiple views these are kept in shared folder. Partial Views can be rendered
in following ways :
Html.Partial
Html.RenderPartial
Below is the sample code snippet to add css to razor views : < link rel="StyleSheet" href="/@Href
C ontent/S ite. css " " type="text/css"/>
No. We cannot add the test cases in Visual Studio Express edition it can be added only in Professional and
Ultimate versions of Visual Studio.
Glimpse is an open source tool for debugging the routes in ASP.Net MVC. It is the client side debugger.
Glimpse has to be turned on by visiting to local url link - http://localhost:portname//glimpse.axd This is a
popular and useful tool for debugging which tracks the speed details, url details etc.
Action Filters allow us to execute the code before or after action has been executed. This can be done by
decorating the action methods of controls with ASP.Net MVC attributes.
Mention some action filters which are used regularly in ASP.Net MVC?
Authentication
Authorization
HandleError
OutputCache
How can we determine action invoked from HTTP GET or HTTP POST?
This can be done in following way : Use class : "HttpRequestBase" and use the method : "HttpMethod" to
determine the action request type.
In Server how to check whether model has error or not in ASP.Net MVC?
Whenever validation fails it will be tracked in ModelState. By using property : IsValid it can be determined. In
Server code, check like this :
if(ModelState.IsValid){
// No Validation Errors
}
https://www.tutorialspoint.com/cgi-bin/printpage.cgi 8/12
17/05/2019 ASP.NET MVC Interview Questions - tutorialspoint
For Model Binding we will use class called : "ModelBinders", which gives access to all the model binders in an
application. We can create a custom model binders by inheriting "IModelBinder".
Exception Handling is made simple in ASP.Net MVC and it can be done by just overriding "OnException" and
set the result property of the filtercontext object asshownbelow to the view detail, which is to be returned in
case of exception.
Does Tempdata hold the data for other request in ASP.Net MVC?
If Tempdata is assigned in the current request then it will be available for the current request and the
subsequent request and it depends whether data in TempData read or not. If data in Tempdata is read then it
would not be available for the subsequent requests.
As explained above in case data in Tempdata has been read in current request only then "Keep" method has
been used to make it available for the subsequent request.
@TempData["TestData"];
TempData.Keep("TestData");
Similar to Keep method we have one more method called "Peek" which is used for the same purpose. This
method used to read data in Tempdata and it maintains the data for subsequent request.
Area is used to store the details of the modules of our project. This is really helpful for big applications, where
controllers, views and models are all in main controller, view and model folders and it is very difficult to
manage.
When we have created an area make sure this will be registered in "Application_Start" event in Global.asax.
Below is the code snippet where area registration is done :
https://www.tutorialspoint.com/cgi-bin/printpage.cgi 9/12
17/05/2019 ASP.NET MVC Interview Questions - tutorialspoint
To create reusable widgets child actions are used and this will be embedded into the parent views. In ASP.Net
MVC Partial views are used to have reusability in the application. Child action mainly returns the partial
views.
"ChildActionOnly" attribute is decorated over action methods to indicate that action method is a child action.
Below is the code snippet used to denote the child action :
[ChildActionOnly]
public ActionResult MenuBar()
{
//Logic here
return PartialView();
}
it's a design pattern and is used for developing loosely couple code. This is greatly used in the software
projects. This will reduce the coding in case of changes on project design so this is vastly used.
TDD is a methodology which says, write your tests first before you write your code. In TDD, tests drive your
application design and development cycles. You do not do the check-in of your code into source control until
all of your unit tests pass.
NUnit
xUnit.NET
Ninject 2
Moq
REST is an architectural style which uses HTTP protocol methods like GET, POST, PUT, and DELETE to
access the data. ASP.Net MVC works in this style. In ASP.Net MVC 4 there is a support for Web API which
uses to build the service using HTTP verbs.
We can use dataannotations for validation in ASP.Net MVC. If we want to use validation during runtime using
Jquery then we can use Jquery plugins for validation. Eg: If validation is to be done on customer name textbox
https://www.tutorialspoint.com/cgi-bin/printpage.cgi 10/12
17/05/2019 ASP.NET MVC Interview Questions - tutorialspoint
then we can do as :
$('#CustomerName').rules("add", {
required: true,
minlength: 2,
messages: {
required: "Please enter name",
minlength: "Minimum length is 2"
}
});
Below is the scenario and the solution to solve multiple submit buttons issue. Scenario :
@using (Html.BeginForm("MyTestAction","MyTestController")
{
<input type="submit" value="MySave" />
<input type="submit" value="MyEdit" />
}
Solution :
Public ActionResult MyTestAction(string submit) //submit will have value either "MySave" or
"MyEdit"
{
// Write code here
}
What are the differences between Partial View and Display Template and Edit Templates in ASP.Net MVC?
Display Templates : These are model centric. Meaning it depends on the properties of the view model
used. It uses convention that will only display like divs or labels.
Edit Templates : These are also model centric but will have editable controls like Textboxes.
Partial View : These are view centric. These will differ from templates by the way they render the
properties I d s Eg : CategoryViewModel has Product class property then it will be rendered as
′
No. We can't set unlimited length for property maxJsonLength. Default value is - 102400 and maximum value
what we can set would be : 2147483644.
Yes. We can use the razor code in javascript in cshtml by using <text> element.
https://www.tutorialspoint.com/cgi-bin/printpage.cgi 11/12
17/05/2019 ASP.NET MVC Interview Questions - tutorialspoint
What is Next ?
Further you can go through your past assignments you have done with the subject and make sure you are able
to speak confidently on them. If you are fresher then interviewer does not expect you will answer very complex
questions, rather you have to make your basics concepts very strong.
Second it really doesn't matter much if you could not answer few questions but it matters that whatever you
answered, you must have answered with confidence. So just feel confident during your interview. We at
tutorialspoint wish you best luck to have a good interviewer and all the very best for your future endeavor.
Cheers :-)
https://www.tutorialspoint.com/cgi-bin/printpage.cgi 12/12