Which is NOT a true statement about compressing pictures?

A) The Compress Pictures button is located in the Adjust group on the Picture Tools' Format tab.
B) Picture compression can be applied to an individual presentation picture.
C) Compressing pictures will increase the amount of presentation delivery time.
D) Picture compression can be applied to the entire presentation.


C

Computer Science & Information Technology

You might also like to view...

Stack is implemented using arrays. Create a new stack class that extends vector. Note that the vector is now the storage for data in the stack. A stack is a vector, because stack extends vector. Draw the UML diagram for the classes. Implement it.

``` template class Stack { public: Stack(); bool empty() const; T peek() const; void push(T value); T pop(); int getSize() const; private: T elements[100]; int size; }; ```

Computer Science & Information Technology

____ sends only the portion of the routing table that pertains to its most immediate router links, which is called the "link-state routing message."

A. RIP B. The spanning tree algorithm C. BGP D. OSPF

Computer Science & Information Technology

An em dash indicates an explanation or emphasis in a document

Indicate whether the statement is true or false

Computer Science & Information Technology

Match the following property types to their descriptions:

I. Format II. Validation Text III. Required IV. Result Type V. Indexed A. increases the efficiency of a search on a designated field B. indicates that a value for the field must be entered C. specifies the error message that is displayed when the validation rule is violated D. enters the format for a calculated field result E. changes the way a field is displayed but does not affect the stored value

Computer Science & Information Technology