The ____ box on the Brush options bar allows you to specify the degree of transparency needed.

a. Opacity
b. Gradient
c. Gamut
d. Brush Effects


a. Opacity

Computer Science & Information Technology

You might also like to view...

Recursion is often less efficient than iteration because ________.

a. it can cause an explosion of method calls. b. it is not as intuitive. c. recursive methods are harder to debug. d. recursive methods take longer to program.

Computer Science & Information Technology

For each value read, your program should print the original value, the number rounded to the nearest integer, the number rounded to the nearest tenth, the number rounded to the nearest hun- dredth and the number rounded to the nearest thousandth.

Function floor can be used to round a number to a specific decimal place. The statement y = floor( x * 10 + .5 ) / 10; rounds x to the tenths position (the first position to the right of the decimal point). The statement y = floor( x * 100 + .5 ) / 100; rounds x to the hundredths position (the second position to the right of the decimal point). Write a program that defines four functions to round a number x in various ways: a) roundToInteger( number ) b) roundToTenths( number ) c) roundToHundredths( number ) d) roundToThousandths( number )

Computer Science & Information Technology

A circular reference occurs when a formula directly or indirectly refers to the cell containing the formula

Indicate whether the statement is true or false

Computer Science & Information Technology

The concept of rendering data passing between two points over an IP based network impervious to all but the most sophisticated advanced persistent threats is BEST categorized as which of the following?

A. Stream ciphers B. Transport encryption C. Key escrow D. Block ciphers

Computer Science & Information Technology