When you ____ a composite image, Photoshop reduces the files size by merging all visible layers into the background, discarding hidden layers, and applying masks.

a. montage
b. animate
c. flatten
d. zip


c. flatten

Computer Science & Information Technology

You might also like to view...

Write a short code fragment that uses a while loop to verify that the user enters a positive integer as input. You may assume that a Scanner object named input has already been created.

What will be an ideal response?

Computer Science & Information Technology

Rich Internet Applications that are developed with Flash are known as Flash ____.

a. clips b. items c. movies d. videos

Computer Science & Information Technology

What is the following code an implementation of?

public class Program { public static void main(String[] args) { String text = "ABAACAADAABAAABAA"; String pattern = "AABA"; System.out.println("match found at position: " + search(text, pattern)); } static int search(String text, String pattern) { int R = 256; int[] right = new int[R]; for (int i = 0; i < R; i++ ) { right[i] = -1; } for (int j = 0; j < pattern.length(); j++ ) { right[pattern.charAt(j)] = j; } int m = pattern.length(); int n = text.length(); int skip; for (int i = 0; i <= n - m; i += skip) { skip = 0; for (int j = m-1; j >= 0; j--) { if (pattern.charAt(j) != text.charAt(i+j)) { skip = Math.max(1, j - right[text.charAt(i+j)]); break; } } if (skip == 0) return i; } return n; } } a. Boyer-Moore algorithm b. Naive search algorithm c. Rabin-Karp algorithm d. Knuth-Morris-Pratt algorithm

Computer Science & Information Technology

What is the best source of information for finding out how to enter the Setup program?

A) Look at the display during the boot process. B) Look up the information on the Internet. C) Look up the information in the computer manual. D) Try random keys.

Computer Science & Information Technology