Color ____ changes the intensity of colors.

A. tone
B. density
C. saturation
D. brightness


Answer: C

Computer Science & Information Technology

You might also like to view...

To add the comment, Welcome John Smith, the syntax would be ________

A. B. < !--- Welcome John Smith? C. D. <"Welcome John Smith -->

Computer Science & Information Technology

The ONERROR event is used to handle all of these except.

(a) User errors. (b) Programmatic errors. (c) Browser errors. (d) Object location errors.

Computer Science & Information Technology

When all the contents of a file are truncated, this means that ________.

a. the data in the file is saved to a backup file b. the file is deleted c. a FileNotFoundException occurs d. all the data in the file is discarded

Computer Science & Information Technology

What is the output from this code?

``` int x = 0; if(x == 2 || 1) { cout<<”Number is 1 or 2”; } else { cout << “Number is not 1 or 2”; }``` A. Number is not 1 or 2 B. Number is 1 or 2 C. Number is 1 or 2Number is not 1 or 2 D. Nothing. The statement is written incorrectly.

Computer Science & Information Technology