Which of the following is NOT true about saving presentations in multiple formats?

A) Using the Share tab on the File tab, you can share your presentation files in a variety of ways, depending on whether or not your presentation file is saved locally, on a SharePoint site, or on SkyDrive.
B) Using the Join People option, you can invite people to view or collaborate with you on your presentation, generate a link to share with others, and give them view or edit permissions.
C) Using the E-mail option, you can send a presentation via an e-mail as either a PowerPoint, PDF, or XPS attachment, or as a link.
D) You can post your presentation to various social networks like Facebook, Twitter, and LinkedIn.


B

Computer Science & Information Technology

You might also like to view...

Which of the following statements is false?

a. Classes (and their objects) encapsulate, i.e., encase, their attributes and methods. b. A class’s (and its object’s) attributes and methods are intimately related. c. For objects to communicate effectively with one another, each must know how the other object is implemented. d. Information hiding is crucial to good software engineering.

Computer Science & Information Technology

Answer the following statements true (T) or false (F)

1. Suppose you have been given a sorted list of 100 names and need to find a particular name in that list. Using binary search, it is possible that you might have to look at every location in the list before finding the desired name. 2. Binary search is an example of an O(log N) algorithm, where the number of items in the list to be searched is N. 3. One advantage of assembly languages over machine languages is that they enable the programmer to use words to identify instructions instead of using binary- number sequences. 4. JavaScript, C++, and Java are all examples of high-level programming languages. 5. When a Web page is loaded into a Web browser, JavaScript code in that page is executed by a JavaScript interpreter that is embedded in the browser.

Computer Science & Information Technology

Do the following two statements in (I) and (II) result in the same value in sum?

``` (I): for (int i = 0; i < 10; ++i) { sum += i; } (II): for (int i = 0; i < 10; i++) { sum += i; } ``` a. Yes b. No

Computer Science & Information Technology

The value in which of the following fields will decrement by one each time it is forwarded by a network node, and the IPv6 packet is discarded if the value in this field reaches 0?

A. Hop Count B. Time to Live C. Hop Limit D. Time Limit

Computer Science & Information Technology