I’m currently studying for Microsoft exam 70-486. I do enjoy studying for exams. It’s hard, but it’s an excellent forcing function. I learn bits and pieces here and there now and then about this and that, but when I have an exam schedule for a set date, I have to study! And not only do I put in more hours, but I follow a more systematic approach. In this article, I’m going to share GreatExam braindumps in case you too are studying and this method works for you.
QUESTION 121
You are designing an ASP.NET MVC 4 application that uses an Oracle database for persistence. What session configuration choices enable you to deploy your application on a web farm? (Choose all that apply.)
A. InProc
B. SQLServer
C. StateServer
D. Custom session provider
Answer: CD
QUESTION 122
You are creating an ASP.NET MVC web application.
The application must accept user input for a ProductName field.
To reduce delays due to invalid entries making round trips between the client and server, user input should be validated on the client before being submitted to the server.
Which code segment should you choose?
A. <div class=”editor-label”>
@Html.LabelFor(model => model.ProductName)
</div>
<div class=”editor-field”>
@Html.EditorFor(model => model.ProductName)
</div>
B. <div class=”editor-label”>
@Html.LabelFor(model => model.ProductName)
</div>
<div class=”editor-field”>
@Html.ValidationMessageFor (model => model.ProductName)
</div>
C. <div class=”editor-field”>
@Html.EditorFor(model => model.ProductName)
@Html.ValidationMessageFor(model => model.ProductName)
</div>
D. <div class=”editor-label”>
@Html.LabelFor(model => model.ProductName)
</div>
Answer: C
QUESTION 123
You are creating an ASP.NET MVC web application.
Within the application, you have created a partial view for contact email and phone number.
Which code segment should you use to display the partial view on the main page?
A. <div class=”float-right”>
<section id=”contact”>
@Html.ActionLink(“ContactPartial”)
</section>
</div>
B. <div class=”float-right”>
<section id=”contact”>
@Html.Partial(“ContactPartial”)
</section>
</div>
C. <div class=”float-right”>
<section id=”contact”>
@RenderPage(“ContactPartial”)
</section>
</div>
D. <div class=”float-right”>
<section id=”contact”>
@RenderBody()
</section>
</div>
Answer: B
QUESTION 124
Hotspot Question
You are developing an ASP.NET MVC application that authenticates a user by using claims-based authentication.
The application must:
– Use Windows Identity Foundation 4.5.
– Support the Windows Azure Access Control Service.
You need to implement authentication.
How should you build the class constructor? (To answer, select the appropriate option from the drop-down list in the answer area.)
Answer:
QUESTION 125
Drag and Drop Question
You are developing an ASP.NET MVC application that allows users to log on by using a third-party authenticator.
You need to configure Microsoft Azure Access Control Services and the application.
Which five actions should you perform in sequence? (To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order.)
Answer:
QUESTION 126
You are developing an ASP.NET MVC application.
The application has a contact view that includes a form for editing the displayed contact.
You need to save the Contact type when the form is posted back to the EditContact method.
Which code segment should you use? (Each correct answer presents a complete solution.
Choose all that apply.)
A. Option A
B. Option B
C. Option C
D. Option D
Answer: CD
QUESTION 127
You are developing an ASP.NET MVC application that uses forms authentication.
Authentication credentials must be encrypted and secure.
You need to ensure that user credentials are persisted after users log on.
Where should you store the credentials? (Each correct answer presents a complete solution. Choose all that apply.)
A. In TempData
B. In Session
C. In ViewData
D. In a cookie
Answer: BD
QUESTION 128
You are developing an ASP.NET MVC application to be used on the Internet.
The environment uses Active Directory with delegation to access secure resources.
Users must be able to log on to the application to maintain their personal preferences.
You need to use the least amount of development effort to enable users to log on.
What should you do?
A. Enable Windows authentication.
B. Generate server SSL certificates and install them in IIS.
C. Enable Digest authentication.
D. Enable Forms authentication.
Answer: A
Explanation:
Requirements for Delegation
Delegation relies on Integrated Windows authentication to access resources. There is no limit on the number of computers that you can delegate your account — you must correctly configure each of them. The Integrated Windows authentication method works only if the following two conditions exist:
/ You set up your network to use the Kerberos authentication protocol that requires Active Directory.
/ You set up the computers and accounts on your network as trusted for delegation.
QUESTION 129
You are desinging a distributed application.
The application must store secure information that is specific to an individual user.
The data must be automatically purged when the user logs off.
You need to save transient information in a secure data store.
Which date store should you use?
A. profile properties
B. session state
C. database storage
D. application state
Answer: B
Explanation:
Use ASP.NET session state to store and retrieve values for a user.
Secure Session-State Configuration
When storing sensitive information in a configuration file for an application, you should encrypt the sensitive values using Protected Configuration.
Information that is especially sensitive includes the encryption keys stored in the machine Key configuration element and data source connection strings stored in the connection Strings configuration element.
QUESTION 130
You are developing an application.
One requirement is that part of your data access layer needs to be available to a third party, that wants to get this information from a REST URL in XML.
Your company does not have experience with web services, but you have several websites running ASP.NET MVC 4.
How could you design and provide these new services? (Choose all that apply.)
A. Task an individual on staff to learn WCF, and have this individual develop and deploy
these new services using WCF.
B. Use the Web API to create REST services using ApiController in which the serialization
type is defined by the Accepts property of the browser.
C. Build a basic ASP.NET MVC 4 project in which the view simply passes through the
information provided by the controller, and the controller manages the code for
serializing the response.
D. Create an ASP.NET ASMX services file to get, serialize, and return the data.
Answer: BC
QUESTION 131
Hotspot Question
You are developing an ASP.NET MVC application that has pages for users who browse the site with Windows Phone 7.
The pages for Windows Phone 7 include the following files:
– _Layout.WP7.cshtml
– Index.WP7.cshtml
You need to update the application so that it renders the customized files correctly to Windows Phone 7 users.
How should you update the Application_Start method? (To answer, select the appropriate option from the drop-down list in the answer area.)
Answer:
QUESTION 132
You are designing a distributed banking application that handles multiple customers.
A user may log on to the site to perform activities such as checking balances, performing transactions, and other activities that must be done securely.
The application must store secure information that is specific to an individual user.
The data must be automatically and securely purged when the user logs off.
You need to save transient information in a secure data store.
Which data store should you use?
A. .NET session state
B. .NET profile properties
C. .NET application state
D. Shared database
Answer: A
QUESTION 133
You are developing an ASP.NET MVC application that supports multiple cultures and multiple languages.
The application will be sold to international customers. The ASP.NET MVC application must store localized content in satellite assemblies for multiple languages.
You need to generate the satellite assemblies during an automated build.
Which tool should you use?
A. Gacutil.exe
B. Al.exe
C. Ildasm.exe
D. nasm.exe
Answer: B
Explanation:
Use the Assembly Linker (Al.exe) to compile .resources files into satellite assemblies.
Al.exe creates an assembly from the .resources files that you specify.
By definition, satellite assemblies can only contain resources.
They cannot contain any executable code.The following Al.exe command creates a satellite assembly for the application MyApp from the file strings.de.resources.
al /t:lib /embed:strings.de.resources /culture:de /out:MyApp.resources.dll
QUESTION 134
You are preparing for the deployment of an ASP.NET MVC application.
You need to generate a deployment manifest.
Which command-line tool should you use?
A. Mage.exe
B. Ngen.exe
C. ALexe
D. Resgen.exe
Answer: A
Explanation:
https://msdn.microsoft.com/en-us/library/vstudio/dd233108(v=vs.100).aspx
QUESTION 135
Drag and Drop Question
You are developing an ASP.NET MVC application.
The application has a view that displays a list of orders in a multi-select list box.
You need to enable users to select multiple orders and submit them for processing.
What should you do? (To answer, drag the appropriate words to the correct targets. Each word may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.)
Answer:
QUESTION 136
Drag and Drop Question
You are developing an ASP.NET MVC application.
Before an action is executed, information about the action must be written to a log.
After results are returned, information about the results also must be written to the log.
You need to log the actions and results.
You have the following code:
Which code segments should you include in Target 1, Target 2 and Target 3 to implement the LogActionFilter class? (To answer, drag the appropriate code segments to the correct targets. Each code segment may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.)
Answer:
QUESTION 137
Hotspot Question
You are optimizing an Internet-facing website for search engine optimization.
You are reading a Site Analysis Report from the SEO Toolkit.
The report returns warnings that indicate the website HTML lacks key information necessary for search engine indexing.
You need to improve the optimization of the site.
What should you do? (To answer, select the appropriate option from the drop-down list in the answer area.)
Answer:
QUESTION 138
You are designing a data-oriented application that features a variety of storage schemas.
The application object model must be mapped to the various storage schemas.
You need to enable developers to manipulate the data.
Which ADO.NET data access strategy should you use? (Each correct answer presents a complete solution. Choose all that apply.)
A. LINQ to SQL
B. Entity Framework
C. DataAdapter
D. DataReader
Answer: ABC
QUESTION 139
You are developing an ASP.NET MVC application that provides instant messaging capabilities to customers.
You have the following requirements:
– Messages must be able to be sent and received simultaneously.
– Latency and unnecessary header data must be eliminated.
– The application must comply with HTML5 standards.
You need to design the application to meet the requirements.
What should you do?
A. Configure polling from the browser.
B. Implement long-running HTTP requests.
C. Implement WebSockets protocol on the client and the server.
D. Instantiate a MessageChannel object on the client.
Answer: D
QUESTION 140
You are developing an ASP.NET MVC application that uses forms authentication to verify that the user is logged in.
Authentication credentials must be encrypted and secure so no user identity is exposed.
You need to ensure that user credentials are persisted after users log on.
Where should you store the credentials? (Each correct answer presents a complete solution. Choose all that apply.)
A. In Session on the server
B. In a cookie stored in the browser
C. In ViewData in the application
D. In TempData on the server
Answer: AB
If you want to prepare for 70-486 exam in shortest time, with minimum effort but for most effective result, you can use GreatExam 70-486 practice test which simulates the actual testing environment and allows you to focus on various sections of 70-486 exam. Best of luck!