PrepAway - Latest Free Exam Questions & Answers

Category: 70-487 (v.4)

Exam 70-487: Developing Windows Azure and Web Services (update November 4th, 2016)

You need to review the requirements and identify the appropriate data access technology

###BeginCaseStudy###
Topic 3, Online Bookstore
Background
You are developing an online bookstore web application that will be used by your company’s customers.
Technical RequirementsGeneral requirements:
 The web store application must be an ASP.NET MVC application written
in Visual Studio.
 The application must connect to a Microsoft SQL database.
 The GetTop100Books() method is mission critical and must return data
as quickly as possible. It should take advantage of fast, forward-only, read-only
methods of reading data.
 The ImportBooks() method must keep a copy of the data that can be
accessed while new books are being imported without blocking reads.
 The Create MonthlyTotalsReport() method must lock the data and
prevent others from updating or inserting new rows until complete.
 The college textbook area of the web application must get data from a
daily updated CSV file.
 The children’s book area of the web application must get data directly
from a local database. It must use a connection string. It must also support
access to the stored procedures on the database. Further, it is required to have
strongly typed objects. Finally, it will require access to databases from multiple
vendors and needs to support more than one-to-one mapping of database
tables.
 The cookbook functionality is contained within a client-side application
that must connect to the server using HTTP and requires access to the data
using JavaScript.
 The BookApiController class must have a method that is able to perform
ad-hoc queries using OData.
The RESTful API of the bookstore must expose the following endpoints.

Application Structure

PurchaseOrders.xml

FeaturedBooks.xml

###EndCaseStudy###

You are preparing to write the data access code for the children’s book area of the web site.
You need to review the requirements and identify the appropriate data access technology.
What should you do?

Which code segment should you use?

###BeginCaseStudy###
Topic 3, Online Bookstore
Background
You are developing an online bookstore web application that will be used by your company’s customers.
Technical RequirementsGeneral requirements:
 The web store application must be an ASP.NET MVC application written
in Visual Studio.
 The application must connect to a Microsoft SQL database.
 The GetTop100Books() method is mission critical and must return data
as quickly as possible. It should take advantage of fast, forward-only, read-only
methods of reading data.
 The ImportBooks() method must keep a copy of the data that can be
accessed while new books are being imported without blocking reads.
 The Create MonthlyTotalsReport() method must lock the data and
prevent others from updating or inserting new rows until complete.
 The college textbook area of the web application must get data from a
daily updated CSV file.
 The children’s book area of the web application must get data directly
from a local database. It must use a connection string. It must also support
access to the stored procedures on the database. Further, it is required to have
strongly typed objects. Finally, it will require access to databases from multiple
vendors and needs to support more than one-to-one mapping of database
tables.
 The cookbook functionality is contained within a client-side application
that must connect to the server using HTTP and requires access to the data
using JavaScript.
 The BookApiController class must have a method that is able to perform
ad-hoc queries using OData.
The RESTful API of the bookstore must expose the following endpoints.

Application Structure

PurchaseOrders.xml

FeaturedBooks.xml

###EndCaseStudy###

The PurchaseOrders.xml file contains all of the purchase orders for the day.
You need to query the XML file for all of the billing addresses.
Which code segment should you use?

Which filter statement should you use?

###BeginCaseStudy###
Topic 3, Online Bookstore
Background
You are developing an online bookstore web application that will be used by your company’s customers.
Technical RequirementsGeneral requirements:
 The web store application must be an ASP.NET MVC application written
in Visual Studio.
 The application must connect to a Microsoft SQL database.
 The GetTop100Books() method is mission critical and must return data
as quickly as possible. It should take advantage of fast, forward-only, read-only
methods of reading data.
 The ImportBooks() method must keep a copy of the data that can be
accessed while new books are being imported without blocking reads.
 The Create MonthlyTotalsReport() method must lock the data and
prevent others from updating or inserting new rows until complete.
 The college textbook area of the web application must get data from a
daily updated CSV file.
 The children’s book area of the web application must get data directly
from a local database. It must use a connection string. It must also support
access to the stored procedures on the database. Further, it is required to have
strongly typed objects. Finally, it will require access to databases from multiple
vendors and needs to support more than one-to-one mapping of database
tables.
 The cookbook functionality is contained within a client-side application
that must connect to the server using HTTP and requires access to the data
using JavaScript.
 The BookApiController class must have a method that is able to perform
ad-hoc queries using OData.
The RESTful API of the bookstore must expose the following endpoints.

Application Structure

PurchaseOrders.xml

FeaturedBooks.xml

###EndCaseStudy###

You need to create an OData filter expression that returns books that match the following
characteristics:
 Published after 1/1/2000
 Have “Science” as the first word
Which filter statement should you use?

Which code segment should you use?

###BeginCaseStudy###
Topic 3, Online Bookstore
Background
You are developing an online bookstore web application that will be used by your company’s customers.
Technical RequirementsGeneral requirements:
 The web store application must be an ASP.NET MVC application written
in Visual Studio.
 The application must connect to a Microsoft SQL database.
 The GetTop100Books() method is mission critical and must return data
as quickly as possible. It should take advantage of fast, forward-only, read-only
methods of reading data.
 The ImportBooks() method must keep a copy of the data that can be
accessed while new books are being imported without blocking reads.
 The Create MonthlyTotalsReport() method must lock the data and
prevent others from updating or inserting new rows until complete.
 The college textbook area of the web application must get data from a
daily updated CSV file.
 The children’s book area of the web application must get data directly
from a local database. It must use a connection string. It must also support
access to the stored procedures on the database. Further, it is required to have
strongly typed objects. Finally, it will require access to databases from multiple
vendors and needs to support more than one-to-one mapping of database
tables.
 The cookbook functionality is contained within a client-side application
that must connect to the server using HTTP and requires access to the data
using JavaScript.
 The BookApiController class must have a method that is able to perform
ad-hoc queries using OData.
The RESTful API of the bookstore must expose the following endpoints.

Application Structure

PurchaseOrders.xml

FeaturedBooks.xml

###EndCaseStudy###

You need to update the ImportBooks() method to use database transactions.
Which code segment should you use?

Which method should you use?

###BeginCaseStudy###
Topic 3, Online Bookstore
Background
You are developing an online bookstore web application that will be used by your company’s customers.
Technical RequirementsGeneral requirements:
 The web store application must be an ASP.NET MVC application written
in Visual Studio.
 The application must connect to a Microsoft SQL database.
 The GetTop100Books() method is mission critical and must return data
as quickly as possible. It should take advantage of fast, forward-only, read-only
methods of reading data.
 The ImportBooks() method must keep a copy of the data that can be
accessed while new books are being imported without blocking reads.
 The Create MonthlyTotalsReport() method must lock the data and
prevent others from updating or inserting new rows until complete.
 The college textbook area of the web application must get data from a
daily updated CSV file.
 The children’s book area of the web application must get data directly
from a local database. It must use a connection string. It must also support
access to the stored procedures on the database. Further, it is required to have
strongly typed objects. Finally, it will require access to databases from multiple
vendors and needs to support more than one-to-one mapping of database
tables.
 The cookbook functionality is contained within a client-side application
that must connect to the server using HTTP and requires access to the data
using JavaScript.
 The BookApiController class must have a method that is able to perform
ad-hoc queries using OData.
The RESTful API of the bookstore must expose the following endpoints.

Application Structure

PurchaseOrders.xml

FeaturedBooks.xml

###EndCaseStudy###

You need to implement the Get() method in the bookstore Web API application to be able to find books
by using an ad hoc query.
Which method should you use?

Which code segments should you include in Target 1, Target 2, Target 3, Target 4…?

###BeginCaseStudy###
Topic 3, Online Bookstore
Background
You are developing an online bookstore web application that will be used by your company’s customers.
Technical RequirementsGeneral requirements:
 The web store application must be an ASP.NET MVC application written
in Visual Studio.
 The application must connect to a Microsoft SQL database.
 The GetTop100Books() method is mission critical and must return data
as quickly as possible. It should take advantage of fast, forward-only, read-only
methods of reading data.
 The ImportBooks() method must keep a copy of the data that can be
accessed while new books are being imported without blocking reads.
 The Create MonthlyTotalsReport() method must lock the data and
prevent others from updating or inserting new rows until complete.
 The college textbook area of the web application must get data from a
daily updated CSV file.
 The children’s book area of the web application must get data directly
from a local database. It must use a connection string. It must also support
access to the stored procedures on the database. Further, it is required to have
strongly typed objects. Finally, it will require access to databases from multiple
vendors and needs to support more than one-to-one mapping of database
tables.
 The cookbook functionality is contained within a client-side application
that must connect to the server using HTTP and requires access to the data
using JavaScript.
 The BookApiController class must have a method that is able to perform
ad-hoc queries using OData.
The RESTful API of the bookstore must expose the following endpoints.

Application Structure

PurchaseOrders.xml

FeaturedBooks.xml

###EndCaseStudy###

DRAG DROP
You need to update the GetBook() method to retrieve book data by using ADO.NET.
You have the following code:

Which code segments should you include in Target 1, Target 2, Target 3, Target 4 and Target 5 to
complete the code? (To answer, drag the appropriate code segments to the correct targets in the
answer area. Each code segment 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 query expression should you use?

###BeginCaseStudy###
Topic 3, Online Bookstore
Background
You are developing an online bookstore web application that will be used by your company’s customers.
Technical RequirementsGeneral requirements:
 The web store application must be an ASP.NET MVC application written
in Visual Studio.
 The application must connect to a Microsoft SQL database.
 The GetTop100Books() method is mission critical and must return data
as quickly as possible. It should take advantage of fast, forward-only, read-only
methods of reading data.
 The ImportBooks() method must keep a copy of the data that can be
accessed while new books are being imported without blocking reads.
 The Create MonthlyTotalsReport() method must lock the data and
prevent others from updating or inserting new rows until complete.
 The college textbook area of the web application must get data from a
daily updated CSV file.
 The children’s book area of the web application must get data directly
from a local database. It must use a connection string. It must also support
access to the stored procedures on the database. Further, it is required to have
strongly typed objects. Finally, it will require access to databases from multiple
vendors and needs to support more than one-to-one mapping of database
tables.
 The cookbook functionality is contained within a client-side application
that must connect to the server using HTTP and requires access to the data
using JavaScript.
 The BookApiController class must have a method that is able to perform
ad-hoc queries using OData.
The RESTful API of the bookstore must expose the following endpoints.

Application Structure

PurchaseOrders.xml

FeaturedBooks.xml

###EndCaseStudy###

You need to create an OData query expression to return the ten books with the largest number of sales.

Which query expression should you use?

You need to return an anonymous object that is serialized to JSON

DRAG DROP
You are developing an ASP.NET Web API action method.
The action method must return the following JSON in the message body.
{” Name “:” Fabrikam”, “Vendor Id”: 9823, “Items”: [“Apples”, “Oranges”] }
You need to return an anonymous object that is serialized to JSON.
What should you do? (To answer, drag the appropriate code segments to the correct location or
locations in the answer area. Each code segment 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.


Page 5 of 12« First...34567...10...Last »