Where is the Add Mask icon located?

What will be an ideal response?


At the bottom of the Layers panel.

Computer Science & Information Technology

You might also like to view...

What is the value of x after execution of the following code segment?

int ctr = 0; int x = 3; while (ctr < 2) { x = x + 4; ctr = ctr + 1; }

Computer Science & Information Technology

A(n) ____________________ tween does not require that you already have a beginning and ending keyframe on a layer.

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

Computer Science & Information Technology

The __________ method sorts the array scores of the double[] type.

a. java.util.Arrays(scores) b. java.util.Arrays.sorts(scores) c. java.util.Arrays.sort(scores) d. Njava.util.Arrays.sortArray(scores)

Computer Science & Information Technology

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

1. In a static method, you may use the this parameter either explicitly or implicitly. 2. A main method can be placed inside a class definition. 3. You may use methods of the Math class without an import statement. 4. Wrapper classes provide a class type corresponding to each of the primitive types so that you can have class types that behave somewhat like primitive types. 5. All versions of Java support automatic boxing.

Computer Science & Information Technology