When creating a new layer, what key do you press when clicking the Create new layer icon to bring up the New Layer dialog box used to specify the layer name and other options?

What will be an ideal response?


Press Option (Mac) or Alt (Windows) when clicking the New Layer icon.

Computer Science & Information Technology

You might also like to view...

A namespace is

a. a collection of name definitions b. using std c. used to distinguish between identical names d. All of the above e. A and C

Computer Science & Information Technology

Which of the following statements is false?

a. A class’s private helper methods may be called only by the class’s other methods b. You cannot declare helper methods in interfaces. c. An interface’s private instance methods can be called directly (i.e., without an object reference) only by the interface’s other instance methods. d. An interface’s private static methods can be called by any of the interface’s instance or static methods.

Computer Science & Information Technology

What are the base cases in the following recursive method?

``` public static void xMethod(int n) { if (n > 0) { System.out.print(n % 10); xMethod(n / 10); } } ``` a. n > 0 b. n <= 0 c. no base cases d. n < 0

Computer Science & Information Technology

How many tracks does the Track Matte effect need? Which track is the effect applied to?

What will be an ideal response?

Computer Science & Information Technology