最新的Microsoft Advanced Windows Store App Development using C# - 070-485免費考試真題
問題1
DRAG DROP
You are developing a Windows Store app.
You need to create an animation that moves a rectangle horizontally across the screen by
using a storyboard.
You have the following code:

Which code snippets 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 snippets to the correct targets in the answer area. Each code snippet 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 a Windows Store app.
You need to create an animation that moves a rectangle horizontally across the screen by
using a storyboard.
You have the following code:

Which code snippets 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 snippets to the correct targets in the answer area. Each code snippet 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.)

正確答案:

問題2
DRAG DROP
You need to allow users to capture video instead of photos.
How should you complete the code segment that will replace lines MP03 through MP11? (To answer, drag the appropriate lines of code 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.)

You need to allow users to capture video instead of photos.
How should you complete the code segment that will replace lines MP03 through MP11? (To answer, drag the appropriate lines of code 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.)

正確答案:

問題3
DRAG DROP
You are developing a Windows Store app.
The app must allow salespeople to choose customer contacts by using a ContactPicker
class. It also must continue to be responsive while the ContactPicker class is displayed.
You need to ensure that the ContactPicker class is displayed to meet the requirements.
How should you complete the code segment? (To answer, drag the appropriate term to the correct location or locations in the answer area. Each term 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 a Windows Store app.
The app must allow salespeople to choose customer contacts by using a ContactPicker
class. It also must continue to be responsive while the ContactPicker class is displayed.
You need to ensure that the ContactPicker class is displayed to meet the requirements.
How should you complete the code segment? (To answer, drag the appropriate term to the correct location or locations in the answer area. Each term 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.)

正確答案:

問題4
DRAG DROP
You are developing a Windows Store app that prints documents.
You need to ensure that the app enables the user to specify the print orientation.
Which four actions should you perform in sequence? (To answer, move the appropriate
actions from the list of actions to the answer area and arrange them in the correct order.)

You are developing a Windows Store app that prints documents.
You need to ensure that the app enables the user to specify the print orientation.
Which four actions should you perform in sequence? (To answer, move the appropriate
actions from the list of actions to the answer area and arrange them in the correct order.)

正確答案:

問題5
You are developing a Windows Store app.
You need to ensure that the app can run only if the device is located in a specified location.
If the device is moved from the location while the app is running, the app must be disabled.
What should you use? (More than one answer choice may achieve the goal. Select the BEST answer.)
You need to ensure that the app can run only if the device is located in a specified location.
If the device is moved from the location while the app is running, the app must be disabled.
What should you use? (More than one answer choice may achieve the goal. Select the BEST answer.)
正確答案: B
問題6
Users report performance issues when getting the location information associated with a photo. You suspect the app is encountering performance issues in the GetLocationAsync() method of the Environment class.
You need to enhance the performance of the GetLocationAsync() method of the app.
What should you do?
You need to enhance the performance of the GetLocationAsync() method of the app.
What should you do?
正確答案: C
問題7
DRAG DROP
You are developing a Windows Store app that caches user application data in the local data store.
The app must create a setting named UserName within a container named UserSettings. The app must store the user name in the local store.
You need to meet the requirements.
How should you complete the code segment? (To answer, drag the appropriate options to the correct location or locations. Each option 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 a Windows Store app that caches user application data in the local data store.
The app must create a setting named UserName within a container named UserSettings. The app must store the user name in the local store.
You need to meet the requirements.
How should you complete the code segment? (To answer, drag the appropriate options to the correct location or locations. Each option 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.)

正確答案:

問題8
DRAG DROP
You need to call the DoWork() method asynchronously in a background task.
Which four lines of code should you use to create the Run() method on line SP13? (To
answer, move the appropriate lines of code from the list of code segments to the answer area and arrange them in the correct order.)

You need to call the DoWork() method asynchronously in a background task.
Which four lines of code should you use to create the Run() method on line SP13? (To
answer, move the appropriate lines of code from the list of code segments to the answer area and arrange them in the correct order.)

正確答案:

問題9
HOTSPOT
You are developing a Windows Store app.
You configure the app to support AutoPlay when a portable media player is connected to a
Windows 8.1 device.
You need to verify whether the app was initiated from AutoPlay.
What code should you add to the OnActivated event handler? (To answer, select the
appropriate options in the answer area.)


You are developing a Windows Store app.
You configure the app to support AutoPlay when a portable media player is connected to a
Windows 8.1 device.
You need to verify whether the app was initiated from AutoPlay.
What code should you add to the OnActivated event handler? (To answer, select the
appropriate options in the answer area.)


正確答案:

問題10
DRAG DROP
You plan to deploy an app to the Windows Store. The app will have a trial mode of 30 days.
You need to develop a solution that displays a notification on the main page that shows the number of days remaining before the trial mode expires. Develop the solution by selecting and ordering the required code snippets. You may not need all of the code snippets.

You plan to deploy an app to the Windows Store. The app will have a trial mode of 30 days.
You need to develop a solution that displays a notification on the main page that shows the number of days remaining before the trial mode expires. Develop the solution by selecting and ordering the required code snippets. You may not need all of the code snippets.

正確答案:

問題11
DRAG DROP
You are developing a Windows Store app that uploads large files to the Internet by using background tasks.
uploadTask is an instance of the IBackgroundTask interface that provides access to a background task instance. UploadFilesAsync() is the asynchronous method that performs the upload.
You need to ensure that the app performs the upload operation asynchronously in a background task.
Which three actions should you perform in sequence? (To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order.)

You are developing a Windows Store app that uploads large files to the Internet by using background tasks.
uploadTask is an instance of the IBackgroundTask interface that provides access to a background task instance. UploadFilesAsync() is the asynchronous method that performs the upload.
You need to ensure that the app performs the upload operation asynchronously in a background task.
Which three actions should you perform in sequence? (To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order.)

正確答案:

問題12
You need to set the default print options according to the requirements.
Which lines of code should you use at line PG33? (Each correct answer presents part of the solution. Choose all that apply.)
Which lines of code should you use at line PG33? (Each correct answer presents part of the solution. Choose all that apply.)
正確答案: B,F
說明:(僅 VCESoft 成員可見)
問題13
DRAG DROP
You need to add a Print button to the app.
Which three actions should you perform in sequence? (To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order.)

You need to add a Print button to the app.
Which three actions should you perform in sequence? (To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order.)

正確答案:

問題14
DRAG DROP
You are developing a Windows Store app.
The following code is provided as part of an RSS feed reader.

You need to create an asynchronous method that reports progress and allows cancellation.
Which three actions should you perform in sequence? (To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order.)

You are developing a Windows Store app.
The following code is provided as part of an RSS feed reader.

You need to create an asynchronous method that reports progress and allows cancellation.
Which three actions should you perform in sequence? (To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order.)

正確答案:

問題15
You are developing a Windows Store app that uses the Windows Push Notification Service (WNS) to send toast notifications.
You need to ensure that the requests that the app sends to the WNS follow the authorization standard that WNS supports.
Which authorization standard should you use?
You need to ensure that the requests that the app sends to the WNS follow the authorization standard that WNS supports.
Which authorization standard should you use?
正確答案: A

