http://www.ensurepass.com/70-486.html
QUESTION 61
You are developing an ASP.NET MVC application. The application must allow users to enter JavaScript in a feedback text box only. You need to disable request validation. What should you do?
A. |
Apply and set the CausesClientSideValidation attribute on the text box to FALSE. |
B. |
Apply and set the ValidateInput attribute on the text box to FALSE. |
C. |
Use the HttpRequest.Unvalidated property to read the unvalidated form value. |
D. |
Use the HttpRequest.Form property to read the unvalidated form value. |
Correct Answer: C
Explanation:
Provides access to HTTP request values without triggering request validation.
http://msdn.microsoft.com/en-us/library/system.web.httprequest.unvalidated.aspx
QUESTION 62
You are developing an ASP.NET MVC application that will be deployed on a web farm. Passwords must be stored in the web.config file and must not be readable or in a format that is easily decodable. You need to encrypt the passwords that are stored in the web.config file. Which command-line tool should you use?
A. |
Aspnet_regiis.exe |
B. |
Ngen.exe |
C. |
Aspnet_merge.exe |
D. |
EdmGen.exe |
Correct Answer: A
Explanation:
http://msdn.microsoft.com/en-us/library/zhhddkxy(v=vs.100).aspx
QUESTION 63
HOTSPOT
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.
Correct Answer:
QUESTION 64
HOTSPOT
You are developing an ASP.NET MVC application.
You need to store membership information in a Microsoft SQL Server database.
How should you configure the membership provider?
To answer, select the appropriate options in the answer area.
Correct Answer:
QUESTION 65
You are designing a distributed application. The application must store a small amount of insecure global information that does not change frequently. You need to configure the application to meet the requirements. Which server-side state management option should you use? (Each correct answer presents a complete solution. Choose all that apply.)
A. |
Application state |
B. |
Session state |
C. |
Database support |
D. |
Profile properties |
Correct Answer: AC
QUESTION 66
You are developing an ASP.NET MVC application. The application is deployed in a web farm and is accessed by many users. The application must handle web server failures gracefully. The servers in the farm must share the short-term state information. You need to persist the application state during the session. What should you implement?
A. |
ASP.NET session state |
B. |
A local database |
C. |
A state server |
D. |
Profile properties |
Correct Answer: C
QUESTION 67
You are developing an ASP.NET MVC application that will be deployed to servers on multiple networks. The application must be compatible with multiple browsers. You must track the page number that the user is viewing in search results. You need to program the location for storing state information. Where should you persist state information?
A. |
Session |
B. |
QueryString |
C. |
Application |
D. |
TempData |
Correct Answer: B
QUESTION 68
HOTSPOT
You are developing an ASP.NET MVC web application that enables users to open Microsoft Excel files.
The current implementation of the ExcelResult class is as follows.
You need to enable users to open Excel files.
How should you implement the ExecuteResult method?
To answer, select the appropriate options in the answer area.
Correct Answer:
QUESTION 69
You are developing an ASP.NET MVC web application in Visual Studio 2012. The application requires several thousand content files. All content is hosted on the same IIS instance as the application. You detect performance issues when the application starts. You need to resolve the performance issues. What should you do?
A. |
Enable compression in IIS. |
B. |
Move the content to a second server. |
C. |
Combine the content files by using ASP.NET MVC bundling. |
D. |
Implement HTTP caching in IIS. |
Correct Answer: C
QUESTION 70
You are designing an HTML5 website. You need to design the interface such that the content is viewable in all types of browsers, including screen readers. What should you do? (Each correct answer presents a complete solution. Choose all that apply.)
A. |
Ensure that content elements have valid and descriptive names. |
B. |
Use Resource Description Framework (RDF) to describe content elements. |
C. |
Convert HTML forms to XForms. |
D. |
Use HTML5 semantic markup elements. |
E. |
Annotate content elements with Accessible Rich Internet Application (ARIA) attributes. |
Correct Answer: DE