Which navigation member should you use?
You are developing a Windows Store app. You need to ensure that the app logs pages that
are viewed by the user. Which navigation member should you use?
Which data access strategies should you use?
HOTSPOT
You are developing a Windows Store app for purchasing school supplies. The app has the
following storage requirements:
• Inventory data must be accessible to the app and over the Internet to external
suppliers. Suppliers will access the data over HTTP by using OData.
• App storage for the high volume sales periods must be able to scale rapidly, but at
the lowest possible cost.
• Color preferences for the user must be stored on the host device.
You need to choose the appropriate data access strategy for each requirement. Which data
access strategies should you use? (To answer, select the correct option from each dropdown list in the answer area.)
Which code segment should you add?
You are developing a Windows Store app. The app will format a paragraph of text to
resemble the following image.
The app must format the paragraph to meet the following requirements:
• The paragraph must be divided among three columns.
• Columns must be separated by vertical lines that are one pixel wide.
You need to ensure that the format of the paragraph meets the requirements. Which code
segment should you add?
Which code segments should you use?
You are developing a Windows Store text editor app by using HTML5 and JavaScript. Users
must be able to select text within the app and then cut the text. You need to enable the Cut
feature. Which code segments should you use? (Each correct answer presents part of the
solution. Choose all that apply.)
Which function should you use?
You are developing a Windows Store app by using HTML5 and JavaScript. The app has
HEADER, NAV, and SECTION elements. The SECTION element displays a list of records.
The app will allow users to sort records multiple times. The app must meet the following
requirements:
• Each time the user performs a sort, replace the content in the SECTION element with
the sorted records.
• Animate the updated content by sliding the sorted records into the SECTION
element.
You need to use the WinJS library to apply the animation to the SECTION element. Which
function should you use?
How should you complete the relevant code?
DRAG DROP
You develop a Windows Store app that allows users to record audio notes. You need to
store the notes in the device’s Music library. How should you complete the relevant code?
(To answer, drag the appropriate code segments to the correct 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.)
How should you complete the relevant markup?
DRAG DROP
You develop a Windows Store app that uses several new user interface features. You need
to declare capabilities in the application manifest so that you can submit the app to the
Windows Store. How should you complete the relevant markup? (To answer, drag the
appropriate markup segments to the correct locations in the answer area. Each markup
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.)
How should you complete the relevant code?
DRAG DROP
You are developing a Windows Store app by using JavaScript. The app will be used to
create video blogs. The app uses the device’s internal camera. The app must meet the
following requirements:
• Allow the user to record audio and video.
• Save files in the .mp4 file format.
• Store files in the user’s Videos library.
You need to ensure that the app meets the requirements. How should you complete the
relevant code? (To answer, drag the appropriate code segments to the correct 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.)
How should you complete the relevant code?
HOTSPOT
You are developing a Windows Store app that will include a <div> element. You are applying
animation to the app. The animation must provide visual feedback that the <div> element
has been tapped or clicked. You need to implement the animation by using a JavaScript
library. How should you complete the relevant code? (To answer, select the correct code
segment from each drop-down list in the answer area.)
Which code segment should you use to call the base method?
You are developing a custom tooltip control that inherits from an existing WinJS tooltip
control. The custom control overrides the open ( ) method of the base control to extend the
functionality. The following code segment depicts the structure of the method override.
Open: function (type) {
• • •
}
You need to ensure that the base method executes at the start of the override. Which code
segment should you use to call the base method?