Pressing ____ (Win) fills a text on a layer with the foreground color.
A. [Alt][Insert]
B. [Alt][Delete]
C. [Ctrl][Insert]
D. [Ctrl][Delete]
Answer: B
You might also like to view...
The result of using a bitwise OR on the binary digits 100011 and 100100 is:
A. 100000 B. 100111 C. 011111 D. 011000
Analyze the following code:
``` public class Test { public static void main(String[] args) { boolean[][] x = new boolean[3][]; x[0] = new boolean[1]; x[1] = new boolean[2]; x[2] = new boolean[3]; System.out.println("x[2][2] is " + x[2][2]); } } ``` a. The program has a compile error because new boolean[3][] is wrong. b. The program has a runtime error because x[2][2] is null. c. The program runs and displays x[2][2] is null. d. The program runs and displays x[2][2] is true. e. The program runs and displays x[2][2] is false.
The ____ file format can store both vector and bitmap data.
a. JPEG b. GIF c. PSD d. EPS
In a data table you can use ________ references in place of cell references inside the formulas.
Fill in the blank(s) with the appropriate word(s).