Which of the following is true?

a) The invert filter flips the image 180 degrees along the y axis.
b) The invert filter applies a negative image effect.
c) There is no invert filter in the DHTML model.
d) The invert filter uses methods gray and xray to achieve its effects.


b) The invert filter applies a negative image effect.

Computer Science & Information Technology

You might also like to view...

The creates object code and stores it on disk.

a. Interpreter. b. Compiler. c. Preprocessor. d. Loader.

Computer Science & Information Technology

Which set of statements totals the values in two-dimensional int array items?

a. int total = 0; for (int subItems : items) for (int item : subItems) total += item; b. int total = 0; for (int item: int[] subItems : items) total += item; c. int total = 0; for (int[] subItems : items) for (int item : items) total += item; d. int total = 0; for (int[] subItems : items) for (int item : subItems) total += item;

Computer Science & Information Technology

A __________ cloud has restricted access like a private cloud and shared cloud resources among a number of independent organizations like a public cloud.

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

Computer Science & Information Technology

Which statement is equivalent to the following:

``` (x >= 0) && (x <= 100) ``` a. ``` !(x < 0) && (x > 100) ``` b. ``` (x < 0) && (x > 100) ``` c. ``` (x >= 0) || (x <= 100) ``` d. ``` !((x < 0) || (x > 100)) ```

Computer Science & Information Technology