Which server-side state management option should you use?
You are designing a distributed application that runs on the Windows Azure platform. 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...
What should you do?
You are developing an ASP.NET MVC news aggregation application that will be deployed to servers on multiple networks. The application must be compatible with multiple browsers. A user can search the website for news articles. You must track the page number that the user is viewing in search results. You...
Which line of code should you use?
You need to implement client-side animations according to the business requirements. Which line of code should you use? (Each correct answer presents a complete solution. Choose all that apply.)A . $ ("h1: first") .animate ({ opacity: 0 });B . $("h1:first").fadeIn(1000);C . $("h1:first").animate({ opacity: 1 });D . $("h1:first").fadeOut(1000);View AnswerAnswer: A, D
How should you build the class constructor?
HOTSPOT You are developing an ASP.NET MVC application that authenticates a user by using claims-based authentication. The application must: 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.) View AnswerAnswer: Explanation: http://garvincasimir.wordpress.com/2012/04/05/tutorial-mvc-application-using-azure-acs-and-forms-authentication-part-1/
How should you build the video viewer?
HOTSPOT You need to implement the map of the runners' paths. How should you build the video viewer? (To answer, select the appropriate options in the answer area.) View AnswerAnswer:
What should you do?
You are developing an ASP.NET MVC application that will run in a shared environment. The application requests the user's password, and then uses the password to sign data. You need to minimize the potential for the password to be discovered by other processes that run in the shared environment. What...
Which data store should you use?
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...
Which code segment should you use?
You need to add an action to RunLogController to validate the users' passwords. Which code segment should you use? A . Option AB . Option BC . Option CD . Option DView AnswerAnswer: B
How should you update the Application_Start method?
DRAG DROP 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: You need to update the application so that it renders the customized files correctly to Windows Phone 7...
Which code segment should you use?
You need to make the "Distance" header of the table bold in the Views/RunLog/GetLog.cshtml view. Which code segment should you use?A . table>tr{ font-weight: bold; }B . table>th:last-child{ font-weight: bold; }C . table+first-child{ font-weight: bold; }D . table>tr>th:nth-child (2) { font-weight: bold; }View AnswerAnswer: D