Explore topic-wise InterviewSolutions in .

This section includes InterviewSolutions, each offering curated multiple-choice questions to sharpen your knowledge and support exam preparation. Choose a topic below to get started.

1.

How to return the JSON from action method in ASP.Net MVC?

Answer»

Below is the code snippet to return string from action method :

public ActionResult TestAction() {return JSON(new { prop1 = "Test1", prop2 = "Test2" });}
2.

How can I return string result from Action in ASP.Net MVC?

Answer»

Below is the code snippet to return string from action method :

public ActionResult TestAction() {return Content("Hello Test !!");}
3.

Can I use Razor code in Javascript in ASP.Net MVC?

Answer»

Yes. We can use the razor code in javascript in cshtml by using <text> element.

< script type="text/javascript">foreach (var item in Model) {< text >//javascript goes here which uses the server values< text >}< script>
4.

Can I set the unlimited length for "maxJsonLength" property in config?

Answer»

No. We can't set unlimited length for property maxJsonLength. Default value is - 102400 and maximum value what we can set would be : 2147483644.

5.

What are the differences between Partial View and Display Template and Edit Templates in ASP.Net MVC?

Answer»

  • 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 (Id's) Eg : CategoryViewModel has Product class property then it will be rendered as Model.Product.ProductName but in case of templates if we CategoryViewModel has List then Html.DisplayFor(m => m.Products) works and it renders the template for each item of this list.
6.

How we can multiple submit buttons in ASP.Net MVC?

Answer»

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}
7.

How to use Jquery Plugins in ASP.Net MVC validation?

Answer»

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 then we can do as :

$('#CustomerName').rules("add", {required: true,minlength: 2,messages: {required: "Please enter name",minlength: "Minimum length is 2"}});
8.

What is Representational State Transfer (REST) mean?

Answer»

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.

9.

Explain the tools used for unit testing in ASP.Net MVC?

Answer»

Below are the tools used for unit testing :

  • NUnit
  • xUnit.NET
  • Ninject 2
  • Moq
10.

Explain Test Driven Development (TDD) ?

Answer»

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.

11.

Explain the advantages of Dependency Injection (DI) in ASP.Net MVC?

Answer»

Below are the advantages of DI :

  • Reduces class coupling
  • Increases code reusing
  • Improves code maintainability
  • Improves application testing
12.

What is Dependency Injection in ASP.Net MVC?

Answer»

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.

13.

How we can invoke child actions in ASP.Net MVC?

Answer»

"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 herereturn PartialView();}
14.

What are child actions in ASP.Net MVC?

Answer»

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.

15.

How we can register the Area in ASP.Net MVC?

Answer»

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 :

protected void Application_Start(){AreaRegistration.RegisterAllAreas();}
16.

Explain Peek method in Tempdata in ASP.Net MVC?

Answer»

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.

string A4str = TempData.Peek("TT").ToString();
17.

Explain Keep method in Tempdata in ASP.Net MVC?

Answer»

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");
18.

Does Tempdata hold the data for other request in ASP.Net MVC?

Answer»

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.

19.

How we can handle the exception at controller level in ASP.Net MVC?

Answer»

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 (as shown below) to the view detail, which is to be returned in case of exception.

protected overrides void OnException(ExceptionContext filterContext)    {    }
20.

What are Model Binders in ASP.Net MVC?

Answer»

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".

21.

How to make sure Client Validation is enabled in ASP.Net MVC?

Answer»

In Web.Config there are tags called : "ClientValidationEnabled" and "UnobtrusiveJavaScriptEnabled". We can set the client side validation just by setting these two tags "true", then this setting will be applied at the application level.

< add key="ClientValidationEnabled" value="true" />< add key="UnobtrusiveJavaScriptEnabled" value="true" />
22.

In Server how to check whether model has error or not in ASP.Net MVC?

Answer»

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}
23.

How can we determine action invoked from HTTP GET or HTTP POST?

Answer»

This can be done in following way :Use class : "HttpRequestBase" and use the method : "HttpMethod" to determine the action request type.

24.

Mention some action filters which are used regularly in ASP.Net MVC?

Answer»

Below are some action filters used :

  • Authentication
  • Authorization
  • HandleError
  • OutputCache
25.

What is the need of Action Filters in ASP.Net MVC?

Answer»

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.

26.

What is the use .Glimpse in ASP.Net MVC?

Answer»

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.axdThis is a popular and useful tool for debugging which tracks the speed details, url details etc.

27.

Can I add ASP.Net MVC Testcases in Visual Studio Express?

Answer»

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.

28.

How we can add the CSS in ASP.Net MVC?

Answer»

Below is the sample code snippet to add css to razor views :< link rel="StyleSheet" href="/Href(~Content/Site.css")" type="text/css"/>

29.

What is PartialView in ASP.Net MVC?

Answer»

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()
30.

What are the possible Razor view extensions?

Answer»

Below are the two types of extensions razor view can have :

  • .cshtml : In C# programming language this extension will be used.
  • .vbhtml - In VB programming language this extension will be used.
31.

Can we add constraints to the route? If yes, explain how we can do it?

Answer»

Yes we can add constraints to route in following ways :

  • Using Regular Expressions
  • Using object which implements interface - IRouteConstraint.
32.

Why to use "{resource}.axd/{*pathInfo}" in routing in ASP.Net MVC?

Answer»

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.

33.

What are the components required to create a route in ASP.Net MVC?

Answer»

  • Name - This is the name of the route.
  • URL Pattern : Placeholders will be given to match the request URL pattern.
  • Defaults :When loading the application which controller, action to be loaded along with the parameter.
34.

Can a view be shared across multiple controllers? If Yes, How we can do that?

Answer»

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.

35.

Explain the types of Scaffoldings.

Answer»

Below are the types of scaffoldings :

  • Empty
  • Create
  • Delete
  • Details
  • Edit
  • List
36.

What are Scaffold templates in ASP.Net MVC?

Answer»

Scaffolding in ASP.NET ASP.Net MVC is used to generate the Controllers,Model and Views for create, read, update, and delete (CRUD) functionality in an application. The scaffolding will be knowing the naming conventions used for models and controllers and views.

37.

What is RouteConfig.cs in ASP.Net MVC 4?

Answer»

"RouteConfig.cs" holds the routing configuration for ASP.Net MVC. RouteConfig will be initialized on Application_Start event registered in Global.asax.

38.

What is Html.RenderPartial?

Answer»

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("TestPartialView"); }

39.

Why to use Html.Partial in ASP.Net MVC?

Answer»

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("TestPartialView")

40.

How we can call a JavaScript function on the change of a Dropdown List in ASP.Net MVC?

Answer»

Create a JavaScript method:

function DrpIndexChanged() { }
Invoke the method:
< %:Html.DropDownListFor(x => x.SelectedProduct, new SelectList(Model.Customers, "Value", "Text"), "Please Select a Customer", new { id = "ddlCustomers", onchange=" DrpIndexChanged ()" })%>
41.

What is the "HelperPage.IsAjax" Property?

Answer»

The HelperPage.IsAjax property gets a value that indicates whether Ajax is being used during the request of the Web page.

42.

What are Code Blocks in Views?

Answer»

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"; }
43.

How to change the action name in ASP.Net MVC?

Answer»

"ActionName" attribute can be used for changing the action name. Below is the sample code snippet to demonstrate more :

[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.
44.

What are Non Action methods in ASP.Net MVC?

Answer»

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}
45.

What are the sub types of ActionResult?

Answer»

ActionResult is used to represent the action method result. Below are the subtypes of ActionResult :

  • ViewResult
  • PartialViewResult
  • RedirectToRouteResult
  • RedirectResult
  • JavascriptResult
  • JSONResult
  • FileResult
  • HTTPStatusCodeResult
46.

Explain the methods used to render the views in ASP.Net MVC?

Answer»

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.
47.

What is ViewStart Page in ASP.Net MVC?

Answer»

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.

48.

Can you explain RenderBody and RenderPage in ASP.Net MVC?

Answer»

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.

49.

Explain Sections is ASP.Net MVC?

Answer»

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")
And in child pages we are defining these sections as shown below :
section TestSection{<h1>Test Content<h1>}
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)
50.

What is Layout in ASP.Net MVC?

Answer»

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.