31
Microsoft 70-481 Exam Questions & Answers Number : 70-481 Passing Score : 800 Time Limit : 120 min File Version : 14.87 http://www.gratisexam.com/ Microsoft 70-481 Exam Questions & Answers Exam Name: Essentials of Developing Windows Metro style Apps using HTML5 and JavaScript For Full Set of Questions please visit: http://www.test- inside.com/70-481.htm

Microsoft 70-481 Exam Questions & Answers · Microsoft 70-481 Exam Questions & Answers Exam Name: ... • The app must allow the user to save annotated news. • The app must display

  • Upload
    others

  • View
    32

  • Download
    0

Embed Size (px)

Citation preview

Page 1: Microsoft 70-481 Exam Questions & Answers · Microsoft 70-481 Exam Questions & Answers Exam Name: ... • The app must allow the user to save annotated news. • The app must display

Microsoft 70-481 Exam Questions & Answers

Number: 70-481Passing Score: 800Time Limit: 120 minFile Version: 14.87

http://www.gratisexam.com/

Microsoft 70-481 Exam Questions & Answers

Exam Name: Essentials of Developing Windows Metro style Apps usingHTML5 and JavaScript

For Full Set of Questions please visit: http://www.test-inside.com/70-481.htm

Page 2: Microsoft 70-481 Exam Questions & Answers · Microsoft 70-481 Exam Questions & Answers Exam Name: ... • The app must allow the user to save annotated news. • The app must display

Testlet 1

You will have 35 minutes to complete the testlet.

For help on how to answer the questions, click the Instuctions button on the question screen.

Background

Southbridge Video rents and sells video games, movies, and other multimedia content. The company iscurrently expanding its operations. Southbridge video is developing a Windows Store news reader and socialmedia app. Users will be able to view and interact with news stories that are related to the video game,entertainment, and related industries. Southbridge Video employees will also use the app to manage salesleads, order fulfillment, and customer-service related activities.

Business Requirements

Email:

Users must be able to email news items to their contacts.

Navigation:

• Easy navigation access must be available to move to the next and previous pages. • Users searching for specific news items must be able to navigate directly to an item from the search resultspanel.

News Items:

• When a user selects a news item on newsPage.html, the news item should be displayed in the newsltem.htmlpage.• The app must periodically retrieve new news items on the newsPage.html page.• The app must allow the user to save annotated news.• The app must display a short title for each news item.

Search Capabilities:

• The app must allow users to search within available news items to locate articles of interest.• The app must provide search suggestions for users.

Authentication:

• Employees must be able to view the sales leads, order fulfillment, and customer-service related pages. • Authenticated users must be able to save news items to read at a later time.• Authenticated users must be able to add and save handwritten notes to the news items.• The app must allow users to choose whether their credentials will be saved after they first log in. Usercredentials must be saved by default.

Technical Requirements

Email:

• When a user clicks the To button to email news items, only contacts that have email addresses should bedisplayed.• When multiple contacts are selected, the email addresses must be displayed in the To text box as a semi-colon-delimited string.

News Items:

• The app must periodically retrieve new items from a web service. The app must display a progress indicatorwhile retrieving new items. • The news feed service must respond to all requests within 15 seconds. The app must not throw an error if theservice does not respond within the allotted time. • Titles for news items must not overflow into other elements on the page. • Authenticated users must be able to add handwritten notes to the news items by using a stylus or the mouse.The app must support saving annotations along with the news item. The app must cancel the navigation fromnewsltem.html to newsPage.html if there are unsaved changes in the annotations area.

Search capabilities:

• The app must retrieve a list of phrases from the news service and provide them as search suggestions to

Page 3: Microsoft 70-481 Exam Questions & Answers · Microsoft 70-481 Exam Questions & Answers Exam Name: ... • The app must allow the user to save annotated news. • The app must display

users.

Authentication:

• Users connected to the corporate network must authenticate against an Active Directory server. • Users outside of the corporate network must authenticate by using forms-based authentication. • User credentials must not be transmitted in plain text.

Application Structure

Relevant portions of the app files are shown below. (Line numbers in the code segments are included forreference only and include a two-character prefix that denotes the specific file to which they belong.)

Page 4: Microsoft 70-481 Exam Questions & Answers · Microsoft 70-481 Exam Questions & Answers Exam Name: ... • The app must allow the user to save annotated news. • The app must display
Page 5: Microsoft 70-481 Exam Questions & Answers · Microsoft 70-481 Exam Questions & Answers Exam Name: ... • The app must allow the user to save annotated news. • The app must display
Page 6: Microsoft 70-481 Exam Questions & Answers · Microsoft 70-481 Exam Questions & Answers Exam Name: ... • The app must allow the user to save annotated news. • The app must display

QUESTION 1You need to configure the CredentialPicker object to meet the requirements. Which code segment should youinsert at line GC04?

A. options.callerSavesCredential = false;B. options.CredentialSaveOption.unselected;C. options.CredentialSaveOption.selected;D. options.callerSavesCredential = true;E. options.CredentialSaveOption.hidden;

Correct Answer: CSection: [none]Explanation

Explanation/Reference:

QUESTION 2You need to ensure that the navigation requirements for displaying news items are met. Which code segmentshould you insert at line NP04?

A. nav.navigate("/html/newsPage.html");B. nav.navigate("/html/newsItem.html", { item: item });C. nav.forward("/html/newsItem.html");

Page 7: Microsoft 70-481 Exam Questions & Answers · Microsoft 70-481 Exam Questions & Answers Exam Name: ... • The app must allow the user to save annotated news. • The app must display

D. nav.forward("/html/newsPage.html", { item: item });

Correct Answer: BSection: [none]Explanation

Explanation/Reference:

QUESTION 3You need to ensure that the requirements for capturing user input on the newsltem.html page are met. Whichcode segments should you use?(Each correct answer presents part of the solution. Choose all that apply.)

http://www.gratisexam.com/

A. inkManager.mode = Windows.UI.Input.Inking.InkManipulationMode.selecting;B. inkManager.mode = Windows.UI.Input.Inking.InkRecognitionTarget.selected;C. inkManager.mode = Windows.UI.Input.Inking.InkManipulationMode.inking;D. inkManager.mode = Windows.UI.Input.Inking.InkRecognitionTarget.all;

Correct Answer: ABSection: [none]Explanation

Explanation/Reference:

QUESTION 4You need to ensure that the layout for newsPage.html meets the requirements. Which layout should youchoose?

A.

B.

Page 8: Microsoft 70-481 Exam Questions & Answers · Microsoft 70-481 Exam Questions & Answers Exam Name: ... • The app must allow the user to save annotated news. • The app must display

C.

D.

Correct Answer: BSection: [none]Explanation

Explanation/Reference:

QUESTION 5You need to implement the requirements for sending news items to multiple contacts. Which code segmentshould you use to replace the code in line EJ04?

A.

B.

C.

Page 9: Microsoft 70-481 Exam Questions & Answers · Microsoft 70-481 Exam Questions & Answers Exam Name: ... • The app must allow the user to save annotated news. • The app must display

D.

Correct Answer: DSection: [none]Explanation

Explanation/Reference:

QUESTION 6You need to ensure that the navigation requirements for displaying news items are met. Which code segmentshould you insert at line NP04?

A. Windows.Devices.EnumerationB. Windows.Devices.InputC. Windows.Media.DevicesD. Windows.UI.Input

Correct Answer: DSection: [none]Explanation

Explanation/Reference:

Page 10: Microsoft 70-481 Exam Questions & Answers · Microsoft 70-481 Exam Questions & Answers Exam Name: ... • The app must allow the user to save annotated news. • The app must display

Testlet 2

You will have 35 minutes to complete the testlet.

For help on how to answer the questions, click the Instuctions button on the question screen.

Background

You are developing a Windows Store app by using HTML5, JavaScript, and CSS3. The app will be used toaccess details about products that your company sells.

Business Requirements

The app must do all of the following: • Be available to customers in many different countries. • Display a list of product categories. • Display the products for a selected category. • Display details of a selected product. • Display images of each product one at a time in a vertical presentation. • Provide a link to an About section in the Settings pane. • Update product data on a daily basis. • Allow the user to view the last selected product while the app is offline. • Be deployed in the Windows Store

Technical Requirements

General:

• When the user restarts the app, the app must start in the state it was in when it was last used. • App settings controls must be 346 pixels wide. • The app must optimize bandwidth use and performance.

Security:

• The app must use an enterprise certificate. • The user must provide valid credentials to access the app. • After user authentication, the app must use stored credentials. • User accounts will be validated against a pre-existing enterprise service.

App Architecture:

• Service calls must be separated from the user interface. • The app must follow the MVC design pattern. • Service classes can be written in C++, C#, VB, or JavaScript. • The app must communicate with pre-existing enterprise services.

Application Structure

Relevant portions of the app files are shown below. (Line numbers in the code segments are included forreference only and include a two-character prefix that denotes the specific file to which they belong.)

Page 11: Microsoft 70-481 Exam Questions & Answers · Microsoft 70-481 Exam Questions & Answers Exam Name: ... • The app must allow the user to save annotated news. • The app must display
Page 12: Microsoft 70-481 Exam Questions & Answers · Microsoft 70-481 Exam Questions & Answers Exam Name: ... • The app must allow the user to save annotated news. • The app must display

QUESTION 1You need to implement the getStoredCredentialsFull method. Which code segment should you insert at lineCM13?

A. credential = credentialStore.retrieve(applicationID, userName);var credentialStore = new Windows.Security.Credentials.PasswordVault();

B. credential = credentialStore.pickAsync(applicationID, userName);var credentialStore = new Windows.Security.Credentials.UI.CredentialPicker();

C. var credentialStore = new Windows.Security.Credentials.PasswordVault();credential = credentialStore.retrieve(applicationID, userName);

D. var credentialStore = new Windows.Security.Credentials.UI.CredentialPicker();credential = credentialStore.pickAsync(applicationID, userName);

Correct Answer: CSection: [none]Explanation

Explanation/Reference:

QUESTION 2You need to ensure that the about.html page is displayed according to the requirements. Which attribute shouldyou add to the DIV element in line AB07?

A. data-win-control="WinJS.UI.ApplicationSettings.SettingsFlyout"B. data-win-control="WinJS.UI.SettingsFlyout"C. data-win-control="WinJS.UI.ApplicationSettings.SettingsPane"D. data-win-control="WinJS.UI.SettingsPane"

Correct Answer: BSection: [none]Explanation

Page 13: Microsoft 70-481 Exam Questions & Answers · Microsoft 70-481 Exam Questions & Answers Exam Name: ... • The app must allow the user to save annotated news. • The app must display

Explanation/Reference:

QUESTION 3You need to ensure that the settings for the About page meet the business requirements. Which attributeshould you add to the DIV element in line AB07?

http://www.gratisexam.com/

A. data-win-options="{width:'narrow'}"B. data-win-options="{width:'346'}"C. data-win-options="{size:'narrow'}"D. data-win-options={size:'346'}"

Correct Answer: ASection: [none]Explanation

Explanation/Reference:

QUESTION 4You need to ensure that the about.html page is displayed. Which code segment should you insert at line DF13?

A.

B.

C.

D.

Correct Answer: BSection: [none]Explanation

Explanation/Reference:

QUESTION 5You need to ensure that the JavaScript object that is defined in the credentialManager.js file can be consumedby other Windows Store apps that are written in different programming languages. How should you rewrite thecode?

A. As a WinJS.Class object

Page 14: Microsoft 70-481 Exam Questions & Answers · Microsoft 70-481 Exam Questions & Answers Exam Name: ... • The app must allow the user to save annotated news. • The app must display

B. As an ASP.NET server controlC. As a Windows Runtime componentD. As an XAML control

Correct Answer: CSection: [none]Explanation

Explanation/Reference:

Page 15: Microsoft 70-481 Exam Questions & Answers · Microsoft 70-481 Exam Questions & Answers Exam Name: ... • The app must allow the user to save annotated news. • The app must display

Question Set 1

QUESTION 1You are developing a Windows Store app that allows the user to write reviews for a company's products. The product selection page must switch to a vertical list layout when the app is snapped. You need to ensure that the product layout is updated. 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 thecorrect order.)

Build List and Reorder:

Correct Answer:

Section: [none]Explanation

Explanation/Reference:

QUESTION 2You are developing a Windows Store app that uses a fluid layout for all user interface elements.You need to ensure that app elements are styled appropriately based on the size and orientation of the app onthe screen.Which media feature should you evaluate?

A. -ms-application-stateB. resolutionC. -ms-view-stateD. -aspect-ratio

Correct Answer: CSection: [none]Explanation

Explanation/Reference:

Page 16: Microsoft 70-481 Exam Questions & Answers · Microsoft 70-481 Exam Questions & Answers Exam Name: ... • The app must allow the user to save annotated news. • The app must display

QUESTION 3You are developing a Windows Store travel-planning app. An array named dataArray stores information abouttravel categories. The array is defined in the following code:

The app must display the title and image for each travel category in a ListView control.You need to define the HTML for the ListView control. How should you complete the HTML?(To answer, drag each appropriate attribute or object to the correct location or locations in the answer area.Each attribute or object may be used once, more than once, or not at all. You may need to drag the split barbetween panes or scroll to view content.)

Select and Place:

Page 17: Microsoft 70-481 Exam Questions & Answers · Microsoft 70-481 Exam Questions & Answers Exam Name: ... • The app must allow the user to save annotated news. • The app must display

Correct Answer:

Page 18: Microsoft 70-481 Exam Questions & Answers · Microsoft 70-481 Exam Questions & Answers Exam Name: ... • The app must allow the user to save annotated news. • The app must display

Section: [none]Explanation

Explanation/Reference:

QUESTION 4You are developing a Windows Store app for purchasing school supplies. The app has the following storagerequirements:- Inventory data must be accessible to the app and over the Internet to external suppliers. Suppliers will accessthe 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 strategiesshould you use?(To answer, drag the appropriate data access strategies to the correct requirements in the answer area. Eachdata access strategy may be used once, more than once, or not at all. You may need to drag the split barbetween panes or scroll to view content.)

Select and Place:

Page 19: Microsoft 70-481 Exam Questions & Answers · Microsoft 70-481 Exam Questions & Answers Exam Name: ... • The app must allow the user to save annotated news. • The app must display

Correct Answer:

Section: [none]Explanation

Explanation/Reference:

Page 20: Microsoft 70-481 Exam Questions & Answers · Microsoft 70-481 Exam Questions & Answers Exam Name: ... • The app must allow the user to save annotated news. • The app must display

QUESTION 5You are developing a Windows Store app. The app must use toast notifications to alert users when the app isoperating in the background.You need configure the app to support toast notifications. Which tab in Visual Studio should you use?(To answer, select the appropriate tab in the answer area.)

Hot Area:

Correct Answer:

Page 21: Microsoft 70-481 Exam Questions & Answers · Microsoft 70-481 Exam Questions & Answers Exam Name: ... • The app must allow the user to save annotated news. • The app must display

Section: [none]Explanation

Explanation/Reference:

QUESTION 6You are developing a Windows Store app by using HTML5 and JavaScript. The app will be used to monitor

Page 22: Microsoft 70-481 Exam Questions & Answers · Microsoft 70-481 Exam Questions & Answers Exam Name: ... • The app must allow the user to save annotated news. • The app must display

road traffic conditions.The app must support live tile notifications, in accordance with the following requirements:· Update the tile every five minutes when the app is in the running state.· Update the tile once in the morning and once in the evening when the app is in the suspended state.· Implement updates to tiles to optimize the power and resource consumption when the app is suspended ornot otherwise running.You need to implement delivery notifications to ensure that the requirements are met.How should you use delivery notifications?

A. Use the Periodic delivery notification when the app is running, and use the Scheduled delivery notificationwhen the app is suspended.

B. Use the Push delivery notification when the app is running, and use the Local delivery notification when theapp is suspended.

C. Use the Local delivery notification when the app is running, and use the Push delivery notification when theapp is suspended.

D. Use the Scheduled delivery notification when the app is running, and use the Push delivery notification whenthe app is suspended.

Correct Answer: CSection: [none]Explanation

Explanation/Reference:

QUESTION 7You are developing a Windows Store app. You need to ensure that unauthenticated users are redirected to thelogin screen when they attempt to navigate to secure pages.Which navigation member should you use?

A. canGoBackB. onbeforenavigate

http://www.gratisexam.com/

C. canGoForwardD. onnavigated

Correct Answer: BSection: [none]Explanation

Explanation/Reference:

QUESTION 8You are developing two Windows Store apps named CameraApp and PhotoAlbum. The apps must meet thefollowing requirements:· CameraApp must have access to images on the local computer on which CameraApp is running.· PhotoAlbum must be able to access the images from CameraApp.You need to configure the deployment package settings for both apps to ensure that the requirements are met.What should you do?

Page 23: Microsoft 70-481 Exam Questions & Answers · Microsoft 70-481 Exam Questions & Answers Exam Name: ... • The app must allow the user to save annotated news. • The app must display

A. Add the URI of CameraApp to the Content URIs list for PhotoAlbum, and add the URI of PhotoAlbum to theContent URIs list for CameraApp.

B. Add the Pictures Library setting to the list of capabilities for PhotoAlbum, and add the Share Target settingto the list of declarations for PhotoAlbum.

C. Add the ShareTarget setting to the list of declarations for PhotoAlbum, and add the Pictures Library settingto the list of capabilities for CameraApp.

D. Add the Pictures Library setting to the list of declarations for CameraApp, and add the Share Target settingto the list of capabilities for PhotoAtbum.

Correct Answer: CSection: [none]Explanation

Explanation/Reference:

QUESTION 9You are developing a Windows Store app. The app includes a handler for the datarequested event. A portion ofthe code for the event handler is shown in the following code segment:

The app must meet the following requirements:· The app must share an order tracking link with target apps.· The app must share URI-type data only.You need to ensure that the app meets the requirements. Which code segment should you insert at line 05?

A. e.request.data.uri(url);B. e.request.data.properties.setText(url);C. var link = new Windows.Foundation.Uri(url);

e.request.data.setUri(link);D. var link = new Windows.Foundation.Uri(url);

e.request.data.properties.setText(url);e.request.setLink(link);

Correct Answer: CSection: [none]Explanation

Explanation/Reference:

QUESTION 10You are developing a Windows Store app. You need to ensure that the app logs pages that are viewed by theuser.Which navigation member should you use?

A. onnavigated

Page 24: Microsoft 70-481 Exam Questions & Answers · Microsoft 70-481 Exam Questions & Answers Exam Name: ... • The app must allow the user to save annotated news. • The app must display

B. canGoForwardC. canGoBackD. onbeforenavigate

Correct Answer: ASection: [none]Explanation

Explanation/Reference:

QUESTION 11You are developing a Windows Store app. The app will format a paragraph of text to resemble the followingimage.

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 youadd?

A.

B.

C.

Page 25: Microsoft 70-481 Exam Questions & Answers · Microsoft 70-481 Exam Questions & Answers Exam Name: ... • The app must allow the user to save annotated news. • The app must display

D.

Correct Answer: CSection: [none]Explanation

Explanation/Reference:

QUESTION 12You are developing a Windows Store app by using HTML5 and JavaScript. The app has HEADER, NAV, andSECTION 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 c ontent in the SECTION elementwith the sorted records.- Animate the updated content by sliding the sorted records into the SECTIONelement.

You need to use the WinJS library to apply the animation to the SECTION element.

Which function should you use?

A. enterPage()B. enterContent()C. createExpandAnimation()D. createExpandAnimation()

Correct Answer: BSection: [none]Explanation

Explanation/Reference:

QUESTION 13You are planning to deploy a Windows Store app to a large number of users. The size of the app isapproximately 5 GB. You need to package the app to prepare it for deployment to the Windows Store.How many packages should you use?

A. 3B. 1C. 2D. 4

Correct Answer: ASection: [none]

Page 26: Microsoft 70-481 Exam Questions & Answers · Microsoft 70-481 Exam Questions & Answers Exam Name: ... • The app must allow the user to save annotated news. • The app must display

Explanation

Explanation/Reference:

QUESTION 14You are developing a Windows Store app by using HTML5. The app will be optimized for accessibility. The appmust meet the following accessibility requirements:

· Provide support for navigating all user interface elements.· Provide support for invoking default functionalit y on the user interface.· Provide support for use of a computer keyboard.

You need to ensure that the app meets the accessibility requirements. Which actions should you perform?(Each correct answer presents part of the solution. Choose all that apply.)

A. Set the tabIndex attribute for interactive elements. Dynamically manage the tabIndex attribute for compositeelements.

B. Set the aria-live attribute of user interface elements to polite for important content that changes dynamically.C. Ensure that visible text has a minimum luminosity contrast ratio of 1:1 against the background.D. Implement event handlers for invoking default functionality.

Correct Answer: ABSection: [none]Explanation

Explanation/Reference:

QUESTION 15You are developing a Windows Store app. You need to ensure that a file that is launched by the app is handledwhen the app is activated. Which code segment should you use?(To answer, select the correct option from the drop-down list in the answer area.)

Hot Area:

Correct Answer:

Page 27: Microsoft 70-481 Exam Questions & Answers · Microsoft 70-481 Exam Questions & Answers Exam Name: ... • The app must allow the user to save annotated news. • The app must display

Section: [none]Explanation

Explanation/Reference:

QUESTION 16You are developing a Windows Store app that will be used to display daily high temperatures and other weatherconditions for five cities.The app must meet the following requirements:

· A splash screen is displayed on the device until the data is retrieved from theInternet.· The user must be able to view weather information as soon as the data is fullyavailable.

You need to ensure that the splash screen is displayed at startup until the app has completed loading updateddata.Which actions can you perform to achieve this goal? (Each correct answer presents a complete solution.Choose all that apply.)

A. Configure settings in the app manifest to display the splash screen until the data is fully available.B. Create an image that duplicates the splash screen, load the image from the dismissed event of the splash

screen, and display the image until the data is fully available.C. Create an image that duplicates the splash screen, and display the image by using fragment loading until

the data is fully available.D. Configure settings in the app manifest to display the splash screen for 10 seconds.

Correct Answer: CDSection: [none]Explanation

Explanation/Reference:

QUESTION 17You are developing a Windows Store app. The app includes a handler for the datarequested event. A portion ofthe code for the event handler is shown in the following code segment:

Page 28: Microsoft 70-481 Exam Questions & Answers · Microsoft 70-481 Exam Questions & Answers Exam Name: ... • The app must allow the user to save annotated news. • The app must display

The app must meet the following requirements:

· The app must share an order tracking link with ta rget apps.· The app must share URI-type data only.

You need to ensure that the app meets the requirements. Which code segment should you insert at line 05?

A. e.request.data.setData(url);B. e.request.data.setText(url);C. var link = new Windows.Foundation.Uri(url);

e.request.data.setUri(link);D. var link = new Windows.Foundation.Uri(url);

e.request.setLink(link);

Correct Answer: CSection: [none]Explanation

Explanation/Reference:

QUESTION 18You are designing a Windows Store app. The app displays prices and other information for various stocks. Theapp must allow the user to perform the following actions:

· Add and remove stocks.· Search by stocks name.· Display information about stocks.

You need to add the appropriate features to the app bar. Which features should you add to the app bar?(To answer, drag the appropriate features to the correct locations in the answer area. Each feature may beused once, more than once, or not at all. You may need to drag the split bar between panes or scroll to viewcontent.)

Select and Place:

Page 29: Microsoft 70-481 Exam Questions & Answers · Microsoft 70-481 Exam Questions & Answers Exam Name: ... • The app must allow the user to save annotated news. • The app must display

Correct Answer:

Section: [none]Explanation

Explanation/Reference:

QUESTION 19You are developing a Windows Store app. The app will be used to manage a task list. The app has thefollowing requirements:

· Support commands to add, remove, filter, and sele ct all items in the task list.· Support navigation to the previous screen.

You need to ensure that the commands are placed according to Microsoft design style guidelines. Whereshould you place each command?(To answer, drag each command to the correct placement location. Each answer must be used only once. Youmay need to drag the split bar between panes or scroll to view content.)

Select and Place:

Page 30: Microsoft 70-481 Exam Questions & Answers · Microsoft 70-481 Exam Questions & Answers Exam Name: ... • The app must allow the user to save annotated news. • The app must display

Correct Answer:

Page 31: Microsoft 70-481 Exam Questions & Answers · Microsoft 70-481 Exam Questions & Answers Exam Name: ... • The app must allow the user to save annotated news. • The app must display

Section: [none]Explanation

Explanation/Reference:

http://www.gratisexam.com/