2015 Latest Braindump2go 70-516 Braindumps Free Download From Braindump2go (11-20)

MICROSOFT NEWS: 70-516 Exam Questions has been Updated Today! Get Latest 70-516 VCE and 70-516PDF Instantly! Welcome to Download the Newest Braindump2go 70-516 VCE&70-516 PDF Dumps: http://www.braindump2go.com/70-516.html (286 Q&As)

Microsoft Official Exam Center New Released 70-516 Dumps Questions, Many New Questions added into it! Braindump2go Offer Free Sample Questions and Answers for Download Now! Visit Our Webiste, get the new updated Questions then pass Microsoft 70-516 at the first try!

Exam Code: 70-516
Exam Name: TS: Accessing Data with Microsoft .NET Framework 4
Certification Provider: Microsoft
Corresponding Certifications: MCPD, MCPD: Web Developer 4, MCPD: Windows Developer 4, MCTS, MCTS: Microsoft .NET Framework 4, Data Access

70-516 Dumps,70-516 Dumps PDF,70-516 Exam PDF,70-516 Book,70-516 Study Guide,70-516 eBook,70-516 eBook PDF,70-516 Exam Questions,70-516 Training Kit,70-516 PDF,70-516 Microsoft Exam,70-516 VCE,70-516 Braindump,70-516 Braindumps PDF,70-516 Braindumps Free,70-516 Practice Test,70-516 Practice Exam,70-516 Preparation,70-516 Preparation Materials,70-516 Practice Questions

QUESTION 11
You use Microsoft Visual Studio 2010 and Microsoft .NET Framework 4.0 to create an application.
The application contains the following XML fragment:
<ApplicationMenu>
<MenuItem name=”File”>
<MenuItem name=”New”>
<MenuItem name=”Project” />
<MenuItem name=”Web Site” />
</MenuItem>
<MenuItem name=”Open”>
<MenuItem name=”Project” />
<MenuItem name=”Web Site” />
</MenuItem>
<MenuItem name=”Save” />
</MenuItem>
<MenuItem name=”Edit”>
<MenuItem name=”Cut” />
<MenuItem name=”Copy” />
<MenuItem name=”Paste” />
</MenuItem>
<MenuItem name=”Help”>
<MenuItem name=”Help” />
<MenuItem name=”About” />
</MenuItem>
</ApplicationMenu>
The application queries the XML fragment by using the XmlDocument class.
You need to select all the descendant elements of the MenuItem element that has its name attribute as File.
Which XPath expression should you use?

A.    //*[@name=’File’][name()=’MenuItem’]
B.    /ApplicationMenu/MenuItem[‘File’]//MenuItem
C.    /ApplicationMenu/MenuItem/descendant::MenuItem[‘File’]
D.    /ApplicationMenu/MenuItem[@name=’File’]/descendant::MenuItem

Answer: D
Explanation:
XPath Examples:
XmlNodeList nodes =
doc.SelectNodes(“/ApplicationMenu/MenuItem[@name=’File’]/descendant::
MenuItem”); //
01 == 02
XmlNodeList nodes =
doc.SelectNodes(“/ApplicationMenu/MenuItem[@name=’File’]//MenuItem”); // 02 ==
01
XmlNodeList nodes =
doc.SelectNodes(“/ApplicationMenu/MenuItem[2]/descendant::MenuItem”); // 03
XmlNodeList nodes =
doc.SelectNodes(“/ApplicationMenu/MenuItem[last()]/descendant::MenuItem”); // 04
XmlNodeList nodes =
doc.SelectNodes(“/ApplicationMenu/MenuItem/descendant::MenuItem[/ApplicationMenu/ MenuItem/@name=@name]”); // 05
XmlNodeList nodes = doc.SelectNodes(“/ApplicationMenu/MenuItem/*”); // 06
XmlNodeList nodes =
doc.SelectNodes(“/ApplicationMenu/MenuItem/descendant::*[@Description]”); //07
XmlNodeList nodes =
doc.SelectNodes(“/ApplicationMenu/MenuItem[MenuItem][position()=2]”); // 08 == 09
XmlNodeList nodes = doc.SelectNodes(“/ApplicationMenu/MenuItem[MenuItem and position()=2]”); // 09 == 08
XmlNodeList nodes = doc.SelectNodes(“/ApplicationMenu/MenuItem[SubMenu or
position()=2]”); // 10
XPath Examples
(http://msdn.microsoft.com/en-us/library/ms256086.aspx)

QUESTION 12
You use Microsoft Visual Studio 2010 and Microsoft .NET Framework 4.0 to create a Windows Communication Foundation (WCF) Data Services service.
You deploy the service to the following URL: http://contoso.com/Northwind.svc.
You want to query the WCF Data Services service to retrieve a list of customer objects.
You need to ensure that the query meets the following requirements:
– Only customers that match the following filter criteria are retrieved: City=”Seattle” AND Level > 200.
– Data is sorted in ascending order by the ContactName and Address properties.
Which URL should you use for the query?

A.    http://contoso.com/Northwind.svc/Customers?City=Seattle &
Level gt 200 & $orderby=ContactName,Address
B.    http://contoso.com/Northwind.svc/Customers?City=Seattle &
Level gt 200 & $orderby=ContactName and Address
C.    http://contoso.com/Northwind.svc/Customers?$filter=City eq ‘Seattle’
and Level gt 200 & $orderby=ContactName,Address
D.    http://contoso.com/Northwind.svc/Customers?$filter=City eq ‘Seattle’
and Level gt 200 & $orderby=ContactName and Address

Answer: C
Explanation:
CHAPTER 7 WCF Data Services
Lesson 1: What Is WCF Data Services?
Working with Filters (page 474)
Accessing the Service from a Web Browser (WCF Data Services Quickstart) (http://msdn.microsoft.com/en-us/library/dd728279.aspx)
Accessing Data Service Resources (WCF Data Services)
(http://msdn.microsoft.com/en-us/library/dd728283.aspx)

QUESTION 13
You use Microsoft Visual Studio 2010 and Microsoft .NET Framework 4.0 to create a Windows Communication Foundation (WCF) Data Services service.
You deploy the data service to the following URL: http://contoso.com/Northwind.svc.
You need to update the City property of the Customer record that has its ID value as 123.
You also need to preserve the current values of the remaining properties.
Which HTTP request should you use?

A.    PUT /Northwind.svc/Customers(123)
Host: contoso.com
Content-Type: application/json { City: ‘Seattle’ }
B.    PUT /Northwind.svc/Customers(123)
Host: contoso.com
Accept: application/json { City: ‘Seattle’ }
C.    MERGE /Northwind.svc/Customers(123)
Host: contoso.com
Content-Type: application/json { City: ‘Seattle’ }
D.    MERGE /Northwind.svc/Customers(123)
Host: contoso.com
Accept: application/json { City: ‘Seattle’ }

Answer: C
Explanation:
HTTP Actions
OData supports the following HTTP actions to perform create, read, update, and delete operations on the entity data that the addressed resource represents:
HTTP GET-This is the default action when a resource is accessed from a browser. No payload is supplied in the request message, and a response method with a payload that contains the requested data is returned.
HTTP POST-Inserts new entity data into the supplied resource. Data to be inserted is supplied in the payload of the request message.
The payload of the response message contains the data for the newly created entity.
This includes any autogenerated key values.
The header also contains the URI that addresses the new entity resource. HTTP DELETE-Deletes the entity data that the specified resource represents. A payload is not present in the request or response messages. HTTP PUT – Replaces existing entity data at the requested resource with new data that is supplied in the payload of the request message.
HTTP MERGE-Because of inefficiencies in executing a delete followed by an insert in the data source just to change entity data, OData introduces a new HTTP MERGE action. The payload of the request message contains the properties that must be changed on the addressed entity resource. Because HTTP MERGE is not defined in the HTTP specification, it may require additional processing to route a HTTP MERGE request through non-OData aware servers.
Accessing and Changing Data Using REST Semantics
(http://msdn.microsoft.com/en-us/library/dd728282.aspx)
HTTP header fields
(http://en.wikipedia.org/wiki/List_of_HTTP_header_fields)
Accept Content-Types that are acceptable
Content-Type The mime type of the body of the request (used with POST and PUT requests)
A Guide to Designing and Building RESTful WebServices with WCF 3.5 (http://msdn.microsoft.com/en-us/library/dd203052.aspx)

VB Scenario
Background
You are updating an existing Microsoft .NET Framework 4 application that includes a data layer built with ADO.NET Entity Framework 4. The application communicates with a Microsoft SQL Server 2008 instance named INST01 on a server named SQL01.
The application stores data in a database named Contoso in the INST01 instance.
You need to update the existing technology and develop new functionality by using Microsoft Visual Studio 2010.
Application and Database Storage
The application tracks bicycle parts as they pass through a factory. Parts are represented by the abstract Part entity and its associated partial classes. Each part has a name stored in the Name field and a unique identifier stored in the Id field.
Parts are either component s (represented by the Component class) such as chains, wheels, and frames, or finished product s (represented by the Product class) such as completed bicycles. The Component class and the Product class derive from the Part class and may contain additional class-specific properties.
Parts may have a color (represented by the Color class), but not all parts have a color, Parts may be composed of other parts, and those parts may in turn be composed of other parts ; any p art represents a tree of the parts that are used to build it, The lowest level of the tree consists of c omponents that do not contain other components.
A product is a p art that has been completed and is ready to leave the factory. A p roduct typically consists of many c omponents (forming a tree of child p arts) but can also be constructed by combining other p roducts and/or c omponents to form a bundled p roduct, such as a bicycle and a helmet that are sold together.
C omponents and p roducts are stored in a database table named Parts by using a table-per-hierarchy (TPH) mapping. Components have a null ProductType field and a non-null PartType field. Products have a non-null ProductType field and a null PartType field.
The following diagram illustrates the complete Entity data model diagram (EDMX diagram),

The following graphic illustrates detail s of the Part-Color Association.

The following code segments show relevant portions of the files referenced by the case study items. (Line numbers in the samples below are included for reference only and include a two-character prefix that denotes the specific file to which they belong.)

Extension Methods.vb

Model.edmx

Model/Color.vb

Model/Component.vb

ModelContosoEntities.vb

Model IName.vb

Model Part.vb
Model Product.vb

sp_FindObsolete


QUESTION 14
You use Microsoft Visual Studio 2010 and Microsoft .NET Framework 4.0 to create an application.
The application connects to a Microsoft SQL Server 2008 database.
The application uses DataContexts to query the database.
You create a function that meets the following requirements:
– Updates the Customer table on the database when a customer is marked as deleted.
– Updates the related entries in other tables (CustomerAddress, CustomerContacts) by marking them as deleted.
– Prevents consumer code from setting the Deleted column’s value directly.
You need to ensure that the function verifies that customers have no outstanding orders before they are marked as deleted.
You also need to ensure that existing applications can use the update function without requiring changes in the code.
What should you do?

A.    Override the Delete operation of the DataContext object.
B.    Override the Update operation of the DataContext object.
C.    Modify the SELECT SQL statement provided to the DataContext object to use an INNER
JOIN between the Customer and Orders tables.
D.    Add new entities to the DataContext object for the Customers and Orders tables.

Answer: A

QUESTION 15
You use Microsoft Visual Studio 2010 and the Microsoft .NET Framework 4.0 to create an application.
The application connects to a Microsoft SQL Server database.
The application uses DataContexts to query the database.
You define a foreign key between the Customers and Orders tables in the database.
You need to ensure that when you delete a customer record, the corresponding order records are deleted.
You want to achieve this goal by using the minimum amount of development effort.
What should you do?

A.    Override the Delete operation of the customer entity.
B.    Remove the foreign key between the Customers and Orders tables.
C.    Use the ExecuteDynamicDelete method of the DataContext object.
D.    Modify the foreign key between the Customers and Orders tables to enable the ON DELETE
CASCADE option.

Answer: D
Explanation:
DataContext.ExecuteDynamicDelete Method
(http://msdn.microsoft.com/en-us/library/system.data.linq.datacontext.executedynamicdelete.aspx)

QUESTION 16
You use Microsoft Visual Studio 2010 and Microsoft .NET Framework 4.0 to create an application.
The application connects to a Microsoft SQL Server database.
The application uses DataContexts to query the database.
The application meets the following requirements:
 
– Stores customer data offline.
– Allows users to update customer records while they are disconnected from the server.
– Enables offline changes to be submitted back to the SQL Server by using the DataContext object.
You need to ensure that the application can detect all conflicts that occur between the offline customer information submitted to the SQL Server and the server version.
You also need to ensure that you can roll back local changes.
What should you do?

A.    Add a try/catch statement around calls to the SubmitChanges method of the DataContext
object and catch SqlExceptions.
B.    Add a try/catch statement around calls to the SubmitChanges method of the DataContext
object and catch ChangeConflictExceptions.
C.    Override the Update operation of the DataContext object.
Call the ExecuteDynamicUpdate method to generate the update SQL.
D.    Call the SubmitChanges method of the DataContext object.
Pass System.Data.Linq.ConflictMode.ContinueOnConflict to the method.

Answer: D
Explanation:
FailOnFirstConflict Specifies that attempts to update the database should stop immediately when the first concurrency conflict error is detected.
ContinueOnConflict Specifies that all updates to the database should be tried, and that concurrency conflicts should be accumulated and returned at the end of the process. ExecuteDynamicUpdate() Method Called inside update override methods to redelegate to
LINQ to SQL the task of generating and executing dynamic SQL for update operations.
ConflictMode Enumeration
(http://msdn.microsoft.com/en-us/library/bb345922.aspx)
DataContext.ExecuteDynamicUpdate Method
(http://msdn.microsoft.com/en-us/library/system.data.linq.datacontext.executedynamicupdate.aspx)

QUESTION 17
You use Microsoft Visual Studio 2010 and Microsoft .NET Framework 4.0 to create a multi-tier application.
You use Microsoft ADO.NET Entity Data Model (EDM) to model entities.
The model contains entities named SalesOrderHeader and SalesOrderDetail.
For performance considerations in querying SalesOrderHeader, you detach SalesOrderDetail entities from ObjectContext.
You need to ensure that changes made to existing SalesOrderDetail entities updated in other areas of your application are persisted to the database.
Which two actions should you perform? (Each correct answer presents part of the solution. Choose two.)

A.    Re-attach the SalesOrderDetail entities.
B.    Set the MergeOption of SalesOrderDetail to MergeOptions.OverwriteChanges.
C.    Set the MergeOption of SalesOrderDetail to MergeOptions.NoTracking.
D.    Call ObjectContext.ApplyCurrentValue.
E.    Call ObjectContext.ApplyOriginalValue.

Answer: AE
Explanation:
ApplyCurrentValues(Of TEntity) Copies the scalar values from the supplied object into the object in the ObjectContext that has the same key.
The ApplyCurrentValues<TEntity> method is used to apply changes that were made to objects outside the ObjectContext, such as detached objects that are received by a Web service. The method copies the scalar values from the supplied object into the object in the ObjectContext that has the same key. You can use the EntityKey of the detached object to retrieve an instance of this object from the data source. Any values that differ from the original values of the object are marked as modified.
Note, the method does not apply the current values to the related objects of currentEntity. ApplyOriginalValues(Of TEntity) Copies the scalar values from the supplied object into set of original values for the object in the ObjectContext that has the same key.
The ApplyOriginalValues<TEntity> method is used to apply changes that were made to objects outside the ObjectContext, such as detached objects that are received by a Web service. The method copies the scalar values from the supplied object into the object in the ObjectContext that has the same key. You can use the EntityKey of the detached object to retrieve an instance of this object from the data source. Any values that differ from the current values of the object are marked as modified.
Note, the method does not apply the current values to the related objects of originalEntity.

QUESTION 18
You use Microsoft Visual Studio 2010 and Microsoft .NET Framework 4.0 to create an application.
The application uses the ADO.NET Entity Framework to manage customer and related order records.
You add a new order for an existing customer.
You need to associate the Order entity with the Customer entity.
What should you do?

A.    Set the Value property of the EntityReference of the Order entity.
B.    Call the Add method on the EntityCollection of the Order entity.
C.    Use the AddObject method of the ObjectContext to add both Order and Customer entities.
D.    Use the Attach method of the ObjectContext to add both Order and Customer entities.

Answer: A
Explanation:
Entity Reference (Of Entity) Represents a related end of an association with a multiplicity of zero or one.

QUESTION 19
You use Microsoft Visual Studio 2010 and Microsoft .NET Framework 4.0 to create an application.
The application connects to a Microsoft SQL Server database over the network.
The application uses data from multiple related database tables.
You need to ensure that the application can be used if the connection is disconnected or unavailable.
Which object type should you use to store data from the database tables?

A.    DataSet
B.    DataAdapter
C.    DataReader
D.    Data Services

Answer: A
Explanation:
The DataSet, which is an in-memory cache of data retrieved from a data source, is a major component of the ADO.NET architecture.
The DataSet consists of a collection of DataTable objects that you can relate to each other with DataRelation objects.
You can also enforce data integrity in the DataSet by using the UniqueConstraint and ForeignKeyConstraint objects.

QUESTION 20
You use Microsoft Visual Studio 2010 and Microsoft .NET Framework 4.0 to create an application.
You use a TableAdapter object to load a DataTable object.
The DataTable object is used as the data source for a GridView control to display a table of customer information on a Web page.
You need to ensure that the application meets the following requirements:
– Load only new customer records each time the page refreshes.
– Preserve existing customer records.
What should you do?

A.    Set the ClearBeforeFill property of the TableAdapter to false.
Use the Fill method of the TableAdapter.
B.    Set the ClearBeforeFill property of the TableAdapter to false.
Use the GetData method of the TableAdapter to create a new DataTable.
C.    Set the ClearBeforeFill property of the TableAdapter to true.
Use the Fill method of the TableAdapter to load additional customers.
D.    Set the ClearBeforeFill property of the TableAdapter to true.
Use the GetData method of the TableAdapter to create a new DataTable.

Answer: A
Explanation:
TableAdapter.Fill Populates the TableAdapter’s associated data table with the results of the TableAdapter’s SELECT command.
TableAdapter.Update Sends changes back to the database.
For more information, see How to:
Update Data Using a TableAdapter.
TableAdapter.GetData Returns a new DataTable filled with data.
TableAdapter.Insert Creates a new row in the data table. For more information, see How
to: Add Rows to a DataTable.
TableAdapter.ClearBeforeFill Determines whether a data table is emptied before you call one of the Fill methods.
Table Adapter Overview
(http://msdn.microsoft.com/en-us/library/bz9tthwx(v=vs.80).aspx)


All the 286 Questions and Answers in Braindump2go 70-516 Exam Dumps are the latest 70-516 Real Exam Questions not just 70-516 Practice Tests Questions! Braindump2gp Microsoft 70-516 Exam Dumps PDF&VCE Guarantees you 100% Pass 70-516 Exam! Braindump2go Can Provide the Latest 70-516 Dumps Questions from Microsoft Official Exam Center for You!


FREE DOWNLOAD: NEW UPDATED 70-516 PDF Dumps & 70-516 VCE Dumps from Braindump2go: http://www.braindump2go.com/70-516.html (286 Q&A)

Comments are closed.