최신Microsoft Developing Microsoft Azure and Web Services - 070-487무료샘플문제
문제1
You manage an ASP.NET Core E-Commerce application that is deployed to Azure App Service. You plan to
use Application Insights for collecting telemetry data.
You must prepare a report that describes utilization patterns of uses. The report must include the following
information:
* the Country or Region from which users access the application
* how often and for how long users browse the catalog
* how many Canadian customers visited the offers page
* how much time Premium customers spend on the support page
* the percentage of users that added items to a shopping cart and completed purchases
You need to collect the required data.
Which tool should you use? To answer, drag the appropriate tools to the correct requirements. Each tool may
be used once, more than once, or mot at all. You may need to drag the split bar between panes or scroll to view
content.
NOTE: Each correct selection is worth one point.

You manage an ASP.NET Core E-Commerce application that is deployed to Azure App Service. You plan to
use Application Insights for collecting telemetry data.
You must prepare a report that describes utilization patterns of uses. The report must include the following
information:
* the Country or Region from which users access the application
* how often and for how long users browse the catalog
* how many Canadian customers visited the offers page
* how much time Premium customers spend on the support page
* the percentage of users that added items to a shopping cart and completed purchases
You need to collect the required data.
Which tool should you use? To answer, drag the appropriate tools to the correct requirements. Each tool may
be used once, more than once, or mot at all. You may need to drag the split bar between panes or scroll to view
content.
NOTE: Each correct selection is worth one point.

정답:

Explanation

Box 1 Geography: Users
"the Country or Region from which users access the application"
The Users panel allows you to understand important details about your users in a variety of ways. You can use
this panel to understand such information as where your users are connecting from, details of their client, and
what areas of your application they're accessing.
Box 2: Feature usage: Session
" how often and for how long users browse the catalog"
The Sessions panel is similar to the Users panel. Where Users helps you understand details about the users
accessing your application, Sessions helps you understand how those users used your application.
Box 3 Canada Offers: Cohorts
" how many Canadian customers visited the offers page"
A Cohort is a set of users grouped on similar characteristics. You can use cohorts to filter data in other panels
allowing you to analyze particular groups of users. For example, you might want to analyze only users who
completed a purchase, or users from Canada.
Box 4 Premium support: Cohorts
"how much time Premium customers spend on the support page"
A Cohort is a set of users grouped on similar characteristics. You can use cohorts to filter data in other panels
allowing you to analyze particular groups of users. For example, you might want to analyze only users who
completed a purchase, or users from Canada.
Box 5: Buyer behavior: Funnels
"the percentage of users that added items to a shopping cart and completed purchases"
Funnels focus on what you want users to do. A funnel represents a set of steps in your application and the
percentage of users who move between steps. For example, you could create a funnel that measures the
percentage of users who connect to your application who search product. You can then see the percentage of
users who add that product to a shopping cart, and then the percentage of those who complete a purchase.
문제2
You are building an ADO.NET Entity Framework application.
You need to validate the conceptual schema definition language (CSDL), store schema definition language
(SSDL), and mapping specification language (MSL) files.
Which Entity Data Model tool can you use? (Each correct answer presents a complete solution. Choose all that
apply.)
You are building an ADO.NET Entity Framework application.
You need to validate the conceptual schema definition language (CSDL), store schema definition language
(SSDL), and mapping specification language (MSL) files.
Which Entity Data Model tool can you use? (Each correct answer presents a complete solution. Choose all that
apply.)
정답: C,D
문제3
Errors occasionally occur when saving data using the FlightInfoContext ADO.NET Entity Framework context.
Updates to the data are being lost when an error occurs.
You need to ensure that data is still saved when an error occurs by retrying the operation. No more than five
retries should be performed.
Which code segment should you use as the body of the SaveChanges() method in the FlightInfoContext.es
file?


Errors occasionally occur when saving data using the FlightInfoContext ADO.NET Entity Framework context.
Updates to the data are being lost when an error occurs.
You need to ensure that data is still saved when an error occurs by retrying the operation. No more than five
retries should be performed.
Which code segment should you use as the body of the SaveChanges() method in the FlightInfoContext.es
file?


정답: B
문제4
You have a web server that hosts several web applications.
From Microsoft Visual Studio, you create an assembly that is signed.
You need to make the assembly available to all of the web applications on the web server. The solution must
minimize the number of copies of the assembly.
Which tool should you run?
You have a web server that hosts several web applications.
From Microsoft Visual Studio, you create an assembly that is signed.
You need to make the assembly available to all of the web applications on the web server. The solution must
minimize the number of copies of the assembly.
Which tool should you run?
정답: C
설명: (KoreaDumps 회원만 볼 수 있음)
문제5
You have a web application that was developed by using Microsoft ASP.NET MVC. The application is
deployed to an Azure web app and uses an Azure SQL Database.
From a development environment, you use Microsoft Visual Studio to change the application code, and you
modify the schema of the database.
You need to deploy the changes to Azure.
Which publishing method should you use?
You have a web application that was developed by using Microsoft ASP.NET MVC. The application is
deployed to an Azure web app and uses an Azure SQL Database.
From a development environment, you use Microsoft Visual Studio to change the application code, and you
modify the schema of the database.
You need to deploy the changes to Azure.
Which publishing method should you use?
정답: C
문제6
You are developing an ASP.NET MVC Web API application.
The methods of the Web API must return details about the result of the operation. You need to create a method
to add products.
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.)

You are developing an ASP.NET MVC Web API application.
The methods of the Web API must return details about the result of the operation. You need to create a method
to add products.
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.)

정답:

Explanation

문제7
You are developing an order processing application that uses the ADO.NET Entity Framework against a SQL
Server database. Lazy loading has been disabled. The application displays orders and their associated order
details. Order details are filtered based on the category of the product in each order.
The Order class is shown below.

The OrderDetail class is shown below.

The Product class is shown below.

The Category class is shown below.

You need to return orders with their filtered list of order details included in a single round trip to the database.
Which code segment should you use?

You are developing an order processing application that uses the ADO.NET Entity Framework against a SQL
Server database. Lazy loading has been disabled. The application displays orders and their associated order
details. Order details are filtered based on the category of the product in each order.
The Order class is shown below.

The OrderDetail class is shown below.

The Product class is shown below.

The Category class is shown below.

You need to return orders with their filtered list of order details included in a single round trip to the database.
Which code segment should you use?

정답: D
설명: (KoreaDumps 회원만 볼 수 있음)
문제8
You are developing a WCF service that compares several data sources. The service takes a long time to
complete.
The service must meet the following requirements:
* The client must be able to continue processing while the service is running.
* The service must initiate communication with the client application when processing is complete.
You need to choose a message pattern to meet the requirements.
Which message pattern should you choose?
You are developing a WCF service that compares several data sources. The service takes a long time to
complete.
The service must meet the following requirements:
* The client must be able to continue processing while the service is running.
* The service must initiate communication with the client application when processing is complete.
You need to choose a message pattern to meet the requirements.
Which message pattern should you choose?
정답: C
문제9
You are developing an ASP.NET MVC application. The application is a loan processing system that uses the
ADO.NET Entity Framework against a SQL Server database. It has a controller that loads a page that displays
all loans along with rate information. Lazy loading has been disabled.
The Loan class is shown below.

You need to return the loans and rate information in a single round trip to the database.
Which code segment should you use?

You are developing an ASP.NET MVC application. The application is a loan processing system that uses the
ADO.NET Entity Framework against a SQL Server database. It has a controller that loads a page that displays
all loans along with rate information. Lazy loading has been disabled.
The Loan class is shown below.

You need to return the loans and rate information in a single round trip to the database.
Which code segment should you use?

정답: A