To turn the visibility for layers on and off, you can press ____ on the visibility icon for the layer you wish to view.

A. ESC+click
B. CTRL+click
C. ALT+click
D. SHIFT+click


Answer: C

Computer Science & Information Technology

You might also like to view...

The advantage of a linear search is that

A) it is simple. B) it is efficient. C) it is fast. D) it can be used on unordered data. E) both A and D

Computer Science & Information Technology

Qualitative documents include memos, ________ on bulletin boards and in work areas, procedure manuals, and policy handbooks.

A) signs B) pictures C) flags D) banners

Computer Science & Information Technology

What does the following program do?

``` // MysteryClass.java public class MysteryClass { public static int mystery(int[] array2, int size) { if (size == 1) { return array2[0]; } else { return array2[size - 1] + mystery(array2, size - 1); } } public static void main(String[] args) { int[] array = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}; int result = mystery(array, array.length); System.out.printf("Result is: %d%n", result); } } ```

Computer Science & Information Technology

Referring to the accompanying figure, the page on the left is showing a(n) ____ page.

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

Computer Science & Information Technology