300+ [LATEST] Mvc Framework Interview Questions and Answers

Q1. Explain What Is Model-view-controller?

MVC is a software architecture pattern for developing web application. It is handled by three objects Model-View-Controller.

Q2. Mention The Order Of The Filters That Get Executed, If The Multiple Filters Are Implemented?

The filter order would be like
•Authorization filters
•Action filters
•Response filters
•Exception filters

Q3. Mention How Can Maintain Session In Mvc?

Session can be maintained in MVC by three ways tempdata, viewdata, and viewbag.

Q4. List Out Few Different Return Types Of A Controller Action Method?

•View Result
•Javascript Result
•Redirect Result
•Json Result
•Content Result

Q5. Mention What Is The Difference Between Adding Routes, To A Web Form Application And An Mvc Application?

To add routes to a webform application, we can use MapPageRoute() method of the RouteCollection class, where adding routes to an MVC application, you can use MapRoute() method.

Q6. Where Is The Route Mapping Code Written?

The route mapping code is written in the “global.asax” file.

Q7. Mention What Is The Importance Of Nonactionattribute?

All public methods of a controller class are treated as the action method if you want to prevent this default method then you have to assign the public method with NonActionAttribute.

Q8. Explain What Is Routing? What Are The Three Segments For Routing Is Important?

Routing helps you to decide a URL structure and map the URL with the Controller.
The three segments that are important for routing is
•ControllerName
•ActionMethodName
•Parameter

Q9. Can You Explain The Complete Flow Of Mvc?

Below are the steps how control flows in MVC (Model, view and controller) architecture:-
•All end user requests are first sent to the controller.
•The controller depending on the request decides which model to load. The controller loads the model and attachesthe model with the appropriate view.
•The final view is then attached with the model data and sent as a response to the end user on the browser

Q10. List Out The Types Of Result In Mvc?

In MVC, there are twelve types of results in MVC where “ActionResult” class is the main class while the 11 are their sub-types
•ViewResult
•PartialViewResult
•EmptyResult
•RedirectResult
•RedirectToRouteResult
•JsonResult
•JavaScriptResult
•ContentResult
•FileContentResult
•FileStreamResult
•FilePathResult

Q11. Mention What Is The Advantages Of Mvc?

•MVC segregates your project into a different segment, and it becomes easy for developers to work on.
•It is easy to edit or change some part of your project that makes project less development and maintenance cost.
•MVC makes your project more systematic.

Q12. Mention What Are The Two Ways To Add Constraints To A Route?

The two methods to add constraints to a route is
•Use regular expressions
•Use an object that implements IRouteConstraint Interface

Q13. Explain What Are The Steps For The Execution Of An Mvc Project?

The steps for the execution of an MVC project includes
•Receive first request for the application
•Performs routing
•Creates MVC request handler
•Create Controller
•Execute Controller
•Invoke action
•Execute Result

Q14. Explain Using Hyperlink How You Can Navigate From One View To Other View?

By using “ActionLink” method as shown in the below code. The below code will make a simple URL which help to navigate to the “Home” controller and invoke the “GotoHome” action.
Collapse / Copy Code
<%= Html.ActionLink(“Home”, “Gotohome”) %>

Q15. Explain The Role Of Components Presentation, Abstraction And Control In Mvc?

•Presentation: It is the visual representation of a specific abstraction within the application
•Abstraction: It is the business domain functionality within the application
•Control: It is a component that keeps consistency between the abstraction within the system and their presentation to the user in addition to communicating with other controls within the system

Q16. Is Mvc Suitable For Both Windows And Web Application?

MVC architecture is suited for web application than windows. For window application MVP i.e. “Model view presenter”is more applicable. If you are using WPF and SL MVVM is more suitable due to bindings.

Q17. Mention What Are The File Extensions For Razor Views?

For razor views the file extensions are
•.cshtml: If C# is the programming language
•.vbhtml: If VB is the programming language

Q18. Explain In Which Assembly Is The Mvc Framework Is Defined?

The MVC framework is defined in System.Web.Mvc.

Q19. Explain How You Can Send The Result Back In Json Format In Mvc?

In order to send the result back in JSON format in MVC, you can use “JSONRESULT” class.

Q20. Mention What Are The Two Ways For Adding Constraints To A Route?

Two methods for adding constraints to route is
•Using regular expressions
•Using an object that implements IRouteConstraint interface

Q21. What Is Partial View In Mvc?

Partial view in MVC renders a portion of view content. It is helpful in reducing code duplication. In simple terms, partial view allows to render a view within the parent view.

Q22. Mention What Are Main Benefits Of Using Mvc?

There are two key benefits of using MVC
•As the code is moved behind a separate class file, you can use the code to a great extent
•As behind code is simply moved to.NET class, it is possible to automate UI testing. This gives an opportunity to automate manual testing and write unit tests.

Q23. What Are The Benefits Of Using Mvc?

There are two big benefits of MVC:-Separation of concerns is achieved as we are moving the code behind to a separate class file. By moving the bindingcode to a separate class file we can reuse the code to a great extent.Automated UI testing is possible because now the behind code (UI interaction code) has moved to a simple.NET class.This gives us opportunity to write unit tests and automate manual testing

Q24. Explain What Is The Difference Between View And Partial View?

View :

  • It contains the layout page
  • Before any view is rendered, viewstart page is rendered
  • View might have markup tags like body, html, head, title, meta etc.
  • View is not lightweight as compare to Partial View

Partial View :

  • It does not contain the layout page
  • Partial view does not verify for a viewstart.cshtml. We cannot put common code for a partial view within the viewStart.cshtml.page
  • Partial view is designed specially to render within the view and just because of that it does not consist any mark up
  • We can pass a regular view to the RenderPartial method

Q25. Explain How You Can Implement Ajax In Mvc?

In Ajax, MVC can be implemented in two ways
•Ajax libraries
•Jquery

Q26. Mention What Does Model-view-controller Represent In An Mvc Application?

In an MVC model,
•Model– It represents the application data domain. In other words applications business logic is contained within the model and is responsible for maintaining data
•View– It represents the user interface, with which the end users communicates. In short all the user interface logic is contained within the VIEW
•Controller– It is the controller that wers to user actions. Based on the user actions, the respective controller responds within the model and choose a view to render that display the user interface.  The user input logic is contained with-in the controller

Q27. Mention What Is The Difference Between Temp Data, View, And View Bag?

•Temp data: It helps to maintain data when you shift from one controller to other controller.
•View data: It helps to maintain data when you move from controller to view
•View Bag: It’s a dynamic wrapper around view data

Q28. How Can We Navigate From One View To Other View Using Hyper-link?

By using “ActionLink” method as shown in the below code. The below code will create a simple URL which help tonavigate to the “Home” controller and invoke the “GotoHome” action.
<%= Html.ActionLink("Home","Gotohome") %>

Q29. How Can We Restrict Mvc Actions To Be Invoked Only By Get Or Post?

We can decorate the MVC action by “HttpGet” or “HttpPost” attribute to restrict the type of HTTP calls. For instanceyou can see in the below code snippet the “DisplayCustomer” action can only be invoked by “HttpGet”. If we try tomake Http post on “DisplayCustomer” it will throw an error.
[HttpGet]
public ViewResult DisplayCustomer(int id)
{
Customer objCustomer = Customers[id];
return View(“DisplayCustomer”,objCustomer);
}

Q30. Mention What Is The Use Of The Default Route {resource}.axd/{*pathinfo}?

This default route prevents request for a web resource file such as Webresource.axd or ScriptResource.axd from being passed to the controller.

Q31. Mention Two Instances Where Routing Is Not Implemented Or Required?

Two instance where routing is not required are
•When a physical file is found that matches the URL pattern
•When routing is disabled for a URL pattern

Q32. Explain How Routing Is Done In Mvc Pattern?

There is a group of routes called the RouteCollection, which consists of registered routes in the application.The RegisterRoutes method records the routes in this collection.  A route defines a URL pattern and a handler to use if the request matches the pattern. The first parameter to the MapRoute method is the name of the route. The second parameter will be the pattern to which the URL matches.  The third parameter might be the default values for the placeholders if they are not determined.

Q33. Mention What Filters Are Executed In The End?

In the end “Exception Filters” are executed.

Q34. Mention The Advantages And Disadvantages Of Mvc Model?

Advantages:

  • It represents clear separation between business logic and presentation logic
  • Each MVC object has different responsibilities
  • The development progresses in parallel
  • Easy to manage and maintain
  • All classes and object are independent of each other

Disadvantages:

  • The model pattern is little complex
  • Inefficiency of data access in view
  • With modern user interface, it is difficult to use MVC
  • You need multiple programmers for parallel development
  • Multiple technologies knowledge is required

 

 

Q35. Name A Few Different Return Types Of A Controller Action Method?

The following are just a few return types of a controller action method. In general an action method can return an instance of a any class that derives from ActionResult class.
@ViewResult
@JavaScriptResult
@RedirectResult
@ContentResult
@JsonResult

 

Q36. How Can We Maintain Session In Mvc?

Sessions can be maintained in MVC by 3 ways tempdata ,viewdata and viewbag