Match the following terms to their meanings:

I. Group
II. Distribute
III. Fill
IV. Clip
V. Crop

A. a single media file
B. evenly spaces selected objects relative to the slide or each other
C. enables you to format multiple objects as one object
D. reduce the size of a picture by removing a vertical or horizontal edge
E. inside color of an object


C, B, E, A, D

Computer Science & Information Technology

You might also like to view...

A class in which modifications to the implementation appear to be invisible to the user of the class is known as _________________.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

Which of the following can be used to replace YYYYYYYY in the following code?

``` public class WildCardDemo3 { public static void main(String[] args) { GenericStack stack1 = new GenericStack<>(); GenericStack stack2 = new GenericStack<>(); stack2.push("Java"); stack2.push(2); stack1.push("Sun"); add(stack1, stack2); WildCardDemo2.print(stack2); } public static void add(GenericStack stack1, GenericStack stack2) { while (!stack1.isEmpty()) stack2.push(stack1.pop()); } } ``` a. ? super Object b. ? super T c. ? extends T d. ? extends Object

Computer Science & Information Technology

File Explorer is the operating system's file management module.

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

Computer Science & Information Technology

Once you rasterize type, other than using the Undo command or reverting the file, you can never go back and convert the rasterized text back into live type.

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

Computer Science & Information Technology