Which template should you use?
You are testing an ASP.NET application. The test plan requires that tests run against the application’s business
layer. You need to use the test project template that meets this requirement. Which template should you use?
Which isolation method should you use?
You are authoring unit tests. The unit tests must test code that consumes sealed classes. You need to create,
maintain, and inject dependencies in the unit tests. Which isolation method should you use?
Which unit test should you use?
You need to examine the state of the application when exceptions are thrown
You are developing an ASP.NET MVC application by using Visual Studio 2012. The application throws and
handles exceptions when it runs. You need to examine the state of the application when exceptions are thrown.
What should you do?
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 needto
program the location for storing state information about the user’s search.
What should you do?
What should you implement?
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 state information. You need to persist the application state during the session. What should you
implement?
You need to eliminate unnecessary header data, minimize latency, and transmit data over a full-duplex connecti
You are developing an ASP.NET MVC application that displays stock market information. The stock market
information updates frequently and must be displayed in real-time. You need to eliminate unnecessary header
data, minimize latency, and transmit data over a full-duplex connection. What should you do?
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 informationthat 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. Chooseall that apply.)
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:
_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, drag the appropriate line of code to the
correct location or locations. Each line of code 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.)
Which code segment should you use?
You are developing an ASP.NET MVC web application for viewing a list of contacts. The application is
designed for devices that support changes in orientation, such as tablets and smartphones. The application
displays a grid of contact tiles in portrait mode. When the orientation changes to landscape, each tile in the grid
expands to include each contact’s details. The HTMLthat creates the tiled interface resembles the following
markup.
The CSS used to style the tiles in landscape mode is as follows.
If this CSS is omitted, the existing CSS displays the tiles in portrait mode. You need to update the landscape-mode CSS to apply only to screens with a width greater than or equal to 500 pixels. Which code segment
should you use?