Which color model is used by commercial printers to create color separations?

A. HSB
B. Lab
C. CMYK
D. RGB


Answer: C

Computer Science & Information Technology

You might also like to view...

How many lines of output will be displayed by the following program fragment?

``` i = 0 do { for (j = 0; j < 4; j = j + 1) printf("%d\n", i + j); i = i + 1; } while (i < 5); ``` a. 0 b. 7 c. 9 d. 16 e. 20

Computer Science & Information Technology

What are the advantages and disadvantages of a metaphor-based organizational scheme? Use Figure 3 from this chapter as an example.

What will be an ideal response?

Computer Science & Information Technology

What does this program segment do?

``` s = 0; i = 1; do { s += i; i++; } while (i < n); ``` a. Adds all the integers from 1 to n. b. Adds all the integers from 1 to n-1. c. Adds the even integers from 1 to n. d. Adds the odd integers from 1 to n. e. None of the above.

Computer Science & Information Technology

____ is a server-side scripting language, commonly used to create dynamic Web pages.

A. HTML B. ActiveX C. PHP D. Javascript

Computer Science & Information Technology