PrepAway - Latest Free Exam Questions & Answers

Author: seenagape

You need to ensure that the WCF service operation receives binary data files along with a string parameter tha

You are creating a Windows application by using Microsoft .NET Framework 4 and
Microsoft Visual Studio 2010. The business logic layer of the application is implemented by
using Windows Communication Foundation (WCF). You create a WCF service that contains
a single operation to upload large binary data files. You configure the binding of the WCF
service to enable data streaming. You need to ensure that the WCF service operation
receives binary data files along with a string parameter that contains the description of each
file. You create a service operation that receives a single parameter. What should you do
next?

Which node should you use to achieve this task?

HOTSPOT
Your network contains a server named Server1 that runs Windows Server 2008 R2. You configure
IPSec on Server1. You need to identify the total number of authentication failures and negotiation
failures that occurred on Server1. Which node should you use to achieve this task?
To answer, select the appropriate node in the answer area.

Which IP addresses should you assign to Router1?

DRAG DROP
Your network contains a subnet named Subnet1. You add a new subnet named Subnet2 to the
network. Subnet1 and Subnet2 are connected by a router named Router1. You need to configure the
IP addresses on Router1 to ensure that IP traffic can be routed between Subnet1 and Subnet2.
Which IP addresses should you assign to Router1? To answer, drag the appropriate IP address to the
correct interface in the answer area.

What should you recommend that the customer do next?

You are consulting with a customer who plans to scale out their SharePoint 2010 Internet
farm. You recommend that they install the standard SharePoint 2010 software needed to
support the Web server role, including language support software, on their servers. The new
requirements for the farm include the following: ·Two new front-end Web servers will be
added to the current system to increase the performance and availability of the Internet
sites. .The new Web servers must properly render all sites in the five languages currently
supported in the farm. .The installation must support the addition of more languages in the
future and conform to all future service pack updates. .The installation plan must use
standard SharePoint 2010 tools and procedures. You need to design a plan for the
customer to set up the Web servers to support all of the languages and meet the
requirements. What should you recommend that the customer do next?

Which storage Model section of the .edmx file should you include?

You use Microsoft Visual Studio 2010 to create a Microsoft .NET Framework 4 application. You
create an Entity Data Model for the database tables shown in the following diagram.

You need to modify the .edmx file so that a many-to-many association can exist between the
Address and Customer entities. Which storage Model section of the .edmx file should you include?

Which code segment should you use?

You use Microsoft .NET Framework 4 to develop an application that connects to a Microsoft SQL
Server 2008 database. You add the following stored procedure to the database.
CREATE PROCEDURE dbo.GetClossAndStudents
AS
BEGIN

SELECT * FROM ctoo.Class
SELECT * FROM dbo.Student
END
You create a SqlConnection named conn that connects to the database. You need to fill a DataSet
from the result that is returned by the stored procedure. The first result set must be added to a
DataTable named Class, and the second result set must be added to a DataTable named Student.
Which code segment should you use?

You need to ensure that array data is sorted based on the culture of the operating system

You are designing a Windows Presentation Foundation (WPF) application by using
Microsoft .NET Framework 4 and Microsoft Visual Studio 2010. The application will be
deployed on Windows 7 computers in the United States and Europe. You need to ensure

that array data is sorted based on the culture of the operating system. What should you do?

You need to create a query that generates the new XML result.

You use Microsoft Visual Studio 2010 and Microsoft .NET Framework 4 to develop an application. A
file named books.xml contains the following XML.
<bib>
<book title=”Programming in Unix” year=”1992″>
<author>Author1</author>
<author>Author2</author>
<author> Author 3 </out hor>
</book>
</bib>

The application must generate an XML result that contains an XML element named BookTitle for
each book. The text content of the element must contain the title of the book. You need to create a
query that generates the new XML result.