ASP.NET%20MVC/MVC%20ASP.Net%20Multiple%20Choice%20Questions Sample Test,Sample questions

Question:
 BundleConfig.cs file is under in which App folder ? 

1.App_Data

2.App_Start

3.Content

4.Filters

Posted Date:-2022-09-29 06:33:49


Question:
 BundleConfig.cs in MVC is used to register filters for different purposes.

1. BundleConfig.cs in MVC is used to register filters for different purposes.

2.BundleConfig.cs in MVC is used to register bundles used by the bundling and minification, serveral bundles are added by default like jQuery,

3.All

4. None

Posted Date:-2022-09-29 05:42:19


Question:
 Does MVC 6 allow only save change, hitting the save but then refreshing the browser to reflect changes?

1.Yes

2. No

3.Both A & B

4.none of these

Posted Date:-2022-09-29 05:05:37


Question:
 How can we set theme to MVC Charts?

1.new Chart(width: 600, height: 400, theme: ChartTheme.Vanilla3D)

2.new Chart(width: 600, height: 400, theme: ChartTheme = Vanilla3

3.new Chart(width: 600, height: 400, theme: Vanilla3

4.None

Posted Date:-2022-09-29 06:10:34


Question:
 How can we write Chart output to MVC View?

1.Write(bmp);

2. Write("bmp");

3. .Write("bmp");

4.All

Posted Date:-2022-09-29 06:14:42


Question:
 How to check Request coming from which controller using MVC ASP.Net?

1. var _controller = HttpContext.Current.Request.RequestContext.Values["Controller"].ToString();

2.var _controller = HttpContext.Current.Request.RequestContext.RouteData.Values["Controller"].ToString();

3.var _controller = RouteData.Values["Controller"].ToString();

4.None

Posted Date:-2022-09-29 05:57:29


Question:
 If Razor View Engine need to add JQuery function and contain @ special character then how we can write it in Razor View? 

1.Replace @ to @@@ (tripple)

2. Replace @ to @@ (double)

3.None

4.Both A & B

Posted Date:-2022-09-29 06:24:13


Question:
 Is ViewData faster than ViewBag in MVC?

1.Yes

2.No

3. Both A) & B)

4.None

Posted Date:-2022-09-29 05:30:49


Question:
 RedirectToAction() works like in ASP.Net MVC C# as

1.Server.Transfer()

2.Response.Redirect()

3. Both A and B

4.None

Posted Date:-2022-09-29 04:14:22


Question:
 RedirectToActionPermanent() Method for which Status code represents?

1.304

2.302

3.301

4.300

Posted Date:-2022-09-29 03:52:15


Question:
 RouteConfig.cs file is under in which App folder ?

1.App_Data

2. App_Start

3.Content

4.Filters

Posted Date:-2022-09-29 06:40:43


Question:
 Viewstart comes under which folder name ?

1.Views

2.Account

3.Shared

4.Home

Posted Date:-2022-09-29 05:12:16


Question:
 What is  RouteConfig.cs in ASP.Net MVC?

1.RouteConfig.cs is used to register MVC config statements, route config.

2.RouteConfig.css is used to register global MVC bundles

3.None

4.all the above

Posted Date:-2022-09-29 05:44:53


Question:
 What is ActionResult() ?

1. It is an abstract Class

2.It is a Concrete Class

3.Both A and B

4.None of these

Posted Date:-2022-09-29 03:55:59


Question:
 What is BundleConfig.cs in ASP.Net MVC ?

1.BundleConfig.cs in MVC is used tegister filters for diffeo rrent purposes.

2.BundleConfig.cs in MVC is used to register bundles used by the bundling and minification, serveral bundles are added by default like jQuery, jQueryUI, jQuery validation, Modernizr, default CSS refere

3.all

4.None

Posted Date:-2022-09-29 05:47:37


Question:
 What is default authentication in Internet Information Services (IIS)?

1.Standard User

2.Administrator

3.Anonymous

4.None

Posted Date:-2022-09-29 04:27:57


Question:
 What is DRY principle in ASP.Net ?

1.Don't repeat yourself.

2.Don't revise yourself.

3.both a and b

4.None

Posted Date:-2022-09-29 04:27:04


Question:
 What is the benefits of Html.RenderPartial using ASP.Net MVC Razor Engine?

1.@Html.RenderPartial Returns response, moreover requires to create action.

2. @Html.RenderPartial Returns nothing (void), it is faster than @Html.Partial, moreover requires not to create action.

3.None

4.Both A & B

Posted Date:-2022-09-29 05:52:11


Question:
 What is the extension of MVC view when using vb.net?

1.cshtml

2.vbhtml

3.none

4. Both A & B

Posted Date:-2022-09-29 04:30:10


Question:
 What is the name of default Viewstart Page in ASP.Net MVC ?

1._ViewStart.cshtml

2. _Layout.cshtml

3. _Login.cshtml

4.None

Posted Date:-2022-09-29 05:14:32


Question:
 Which is the best approach to assign a session in MVC?

1.System.Web.HttpContext.Current.Session["LoginID"] =7;

2.Current.Session["LoginID"] =7;

3.Session["LoginID"] =7;

4.None of these

Posted Date:-2022-09-29 03:51:01


Question:
 Which Namespace is used for ASPX View Engine ?

1.System.Web.Razor

2.System.Web.Mvc.WebFormViewEngine

3.Both A & B

4. None

Posted Date:-2022-09-29 04:44:42


Question:
Are both TempData/ViewData property of Controller base class in MVC?

1. Yes

2.No

3.Both A & B

4.None

Posted Date:-2022-09-29 05:32:07


Question:
Are both TempData/ViewData require typecasting in MVC?

1. Both (TempData/ViewData) requires type casting to avoid null exception.

2.No, these (TempData/ViewData) does not require type casting.

3.Both A) & B)

4.None

Posted Date:-2022-09-29 05:24:04


Question:
Are MVC and Web API merged into one in MVC 6?

1.Yes

2.no

3.Both A & B

4.None

Posted Date:-2022-09-29 05:03:41


Question:
AuthConfig.cs file is under in which App folder ? 

1.App_Data

2.App_Start

3.Content

4.Filters

Posted Date:-2022-09-29 06:29:23


Question:
Can vNext runs on both Mac and Linux today (Mono Version)?

1.Yes

2.No

3.Both A & B

4.None

Posted Date:-2022-09-29 05:07:59


Question:
Can we use view state in MVC ?

1.Yes.

2.no

3.Both A & B

4.none

Posted Date:-2022-09-29 04:24:04


Question:
Does MVC 6 introduced new JSON project based structure?

1.Yes

2. No

3.Both A & B

4.None

Posted Date:-2022-09-29 05:04:34


Question:
Does Razor Engine supports for TDD ?

1.Yes

2.No

3.b

4.None

Posted Date:-2022-09-29 04:56:40


Question:
Does TempData used to pass data from one page to another page in MVC?

1.Yes

2.No

3.Both A) & B)

4.None

Posted Date:-2022-09-29 05:34:01


Question:
Does Viewstart override all Views layout/template under "Views" folder in MVC ?

1.Yes

2. No

3.Both A & B

4.none of these

Posted Date:-2022-09-29 05:13:18


Question:
Does vNext is now Open Sourced via the .NET Foundation and open to public contributions.

1.Yes.

2.no

3.Both A & B

4.None

Posted Date:-2022-09-29 05:06:20


Question:
FilterConfig.cs file is under in which App folder ? 

1.App_Data

2. App_Start

3.Content

4.Filters

Posted Date:-2022-09-29 06:38:54


Question:
For which ModelState.IsValid Validate ?

1.It checks for Entityframework Model state.

2. It checks for valid Model State using DataAnnotations.

3. It checks for SQL database state.

4.none

Posted Date:-2022-09-29 05:59:02


Question:
How can we add Chart Type to MVC Charts?

1..NewSeries(chartType: "Bar")

2.Series(chartType: "Bar")

3. .AddSeries(chartType: "Bar")

4.all

Posted Date:-2022-09-29 06:13:28


Question:
How can we give Title to MVC Charts?

1. var chart = AddTitle("My First Chart")

2..AddTitle("My First Chart")

3. .AddTitle('My First Chart')

4.al

Posted Date:-2022-09-29 06:07:34


Question:
How can we provide Height and Width to MVC Charts ?

1.new Chart(width - 600, height - 400)

2. new Chart(width = 600, height = 400)

3.new Chart(width: 600, height: 400)

4.All

Posted Date:-2022-09-29 06:03:30


Question:
How can you comment using Razor Syntax?

1.@ Comment me *@

2.@* Comment me *@

3.@* Comment me @*

4.*@ Comment me @*

Posted Date:-2022-09-29 04:34:58


Question:
How does work Viewstart in MVC (ASP.Net)?

1. Viestart is used to layout of the application.

2.Viewstart is used like Masterpage in traditional forms (ASP.Net pages).

3.Viewstart render first in the views

4. A, B and C.

Posted Date:-2022-09-29 05:10:43


Question:
How to Print value from Controller to View in MVC ?

1.ViewBag.ECMDetail = "my message"; and in view @ViewBag.ECMDetail

2. ViewBag.ECMDetail = "my message"; and in view ViewBag.ECMDetail

3.ViewBag.ECMDetail = "my message"; and in view ViewBag.Title

4.None

Posted Date:-2022-09-29 05:00:42


Question:
How to set Default Value to Hidden Input Box using ASP.Net MVC? 

1. @Html.HiddenFor(m => m.Name, "Jack")

2. @Html.HiddenFor(m => m.Name, new { Value = "Jack"})

3.@Html.Hidden(m => m.Name, new { Value = "Jack"})

4.none

Posted Date:-2022-09-29 06:26:53


Question:
In which format data can be return from XML into table ?

1.DataSet

2.Datatable

3.A and B

4.None

Posted Date:-2022-09-29 04:15:56


Question:
Is ViewBag slower than ViewData in MVC?

1.Yes

2.no

3.Both A & B

4.None

Posted Date:-2022-09-29 05:28:19


Question:
RedirectToAction() Method for which Status code represents?

1.304

2.302

3.301

4.300

Posted Date:-2022-09-29 03:54:33


Question:
RedirectToAction() works like in ASP.Net MVC C# as

1.Server.Transfer()

2. Response.Redirect()

3.Both A and

4.None

Posted Date:-2022-09-29 04:11:34


Question:
return View() works like in ASP.Net MVC C# as

1.Server.Transfer()

2.Response.Redirect()

3.Both A and B

4. None

Posted Date:-2022-09-29 04:01:51


Question:
The ASPX View Engine uses to render server side content.

1.@

2.<%= %>

3.Both A & B

4.no

Posted Date:-2022-09-29 04:48:11


Question:
The Razor View Engine uses to render server side content.

1.@

2. <%= %>

3.Both A & B

4.None

Posted Date:-2022-09-29 04:46:16


Question:
What is AuthConfig.cs in ASP.Net MVC ?

1.uthConfig.cs is used to configure route settings

2.AuthConfig.cs is used to configure security settings including sites oAuth Login.

3.None

4.All

Posted Date:-2022-09-29 05:36:09


Question:
What is FilterConfig.cs in ASP.Net MVC ?

1. FilterConfig.cs is used to register global MVC filters, HandleErrorAttribute is registered by default filter. We can also register other filters.

2.FilterConfig.cs is used to register global MVC bundles.

3.None

4.All

Posted Date:-2022-09-29 05:43:37


Question:
What is the benefits of Html.Partial using ASP.Net MVC Razor Engine?

1.@Html.RenderPartial Returns response, moreover requires to create action.

2. @Html.RenderPartial Returns string value, it is slower than @Html.RenderPartial, moreover requires not to create action

3.None

4. Both A and B

Posted Date:-2022-09-29 05:54:03


Question:
What is the difference between HtmlTextbox and HtmlTextboxFor using ASP.Net MVC Razor Engine?

1.@Html.TextBox is not strongly typed, @Html.TextBoxFor is strongly typed that is why should be use @Html.TextBoxFor in MVC Razor Engine.

2.@Html.TextBox is strongly typed, @Html.TextBoxFor is not strongly typed that is why should be use @Html.TextBox in MVC Razor Engine.

3.None

4.Both A and B

Posted Date:-2022-09-29 05:50:19


Question:
What is the extension of MVC view when using C#?

1.cshtml

2.vbhtml

3.None

4.Both A & B

Posted Date:-2022-09-29 04:29:07


Question:
What is ViewResult() ?

1. It is an abstract Class

2. It is a Concrete Class

3. Both A and B

4.none of these

Posted Date:-2022-09-29 03:59:14


Question:
What Request Processing technique follows ASP.Net ?

1. Top-Down

2.Down-Up

3.Pipeline

4.Water fall

Posted Date:-2022-09-29 04:26:04


Question:
Which  Namespace is used to "Display" in Data Annotation using MVC ?

1.System.ComponentModel

2.System.ComponentModel.DataAnnotations

3.Both A and B

4.None

Posted Date:-2022-09-29 05:20:02


Question:
Which  Namespaces are required to Data Annotation using MVC ?

1.System.ComponentModel

2.System.ComponentModel.DataAnnotations

3. Both A and B

4.None

Posted Date:-2022-09-29 05:21:43


Question:
Which filter will be execute at first using ASP.Net MVC?

1. Action filters

2.Authorization filters

3.Response filters

4.Exception filters

Posted Date:-2022-09-29 06:42:52


Question:
Which filter will be execute at last using ASP.Net MVC?

1.Action filters

2.Authorization filters

3.Exception filters

4.Response filters

Posted Date:-2022-09-29 06:45:24


Question:
Which is more faster between ASPX View Engine and Razor View Engine.

1. ASPX View Engine

2.Razor View Engine

3. Both A & B

4.None

Posted Date:-2022-09-29 04:50:23


Question:
Which is the way to render Partial View using ASP.Net MVC Razor Engine?

1.@Html.Partial("_PartialHeader")

2.@Html.PartialView("_PartialHeader")

3.@Html.PartialHtml("_PartialHeader")

4. B and C

Posted Date:-2022-09-29 05:18:37


Question:
Which name space using can send email in ASP.Net MVC?

1.using System.Net.Mail;

2.using System.Net;

3. using System.Mail

4.none

Posted Date:-2022-09-29 06:20:23


Question:
Which Namespace is used for Razor View Engine ?

1.System.Web.Razor

2.System.Web.Mvc.WebFormViewEngine

3. Both A & B

4. None

Posted Date:-2022-09-29 04:43:24


More MCQS

  1. MVC ASP.Net Multiple Choice Questions
  2. ASP.Net MVC Multiple choice
  3. ASP.Net MCQs Set 1
  4. ASP.Net MCQs Set 2
Search
R4R Team
R4Rin Top Tutorials are Core Java,Hibernate ,Spring,Sturts.The content on R4R.in website is done by expert team not only with the help of books but along with the strong professional knowledge in all context like coding,designing, marketing,etc!