Identify the letter of the choice that best matches the phrase or definition.

A. A special effect that is created by reducing the number of colors available for the image
B. A visual effect in which the edge of an image-usually an oval-gradually fades away.
C. A hard edge
D. Saved selections
E. A blend, usually at the edge of an image
F.
G.

A. Posterize
B. Vignette
C. Aliased edge
D. Alpha channel
E. Feather
F. Tolerance
G. Quick Mask Mode

Computer Science & Information Technology

You might also like to view...

Because ________files are typically very large, when you create a presentation, you may want to link to the media by inserting a hyperlink to the resources website

A) text B) picture C) video D) audio

Computer Science & Information Technology

Which of the following statements is false?

a. List comprehensions provide a concise and convenient notation for creating new lists. b. List comprehensions can replace many for statements that iterate over ex-isting sequences and create new lists, such as: list1 = [] for item in range(1, 6): We can accomplish the same task in a single line of code with a list comprehen-sion: list2 = [item for item in range(1, 6)] c. The preceding list comprehension’s for clause iterates over the sequence produced by range(1, 6). For each item, the list comprehension evaluates the expression to the left of the for clause and places the expression’s value (in this case, the item itself) in the new list. d. All of the above statements are true.

Computer Science & Information Technology