Which of the following formulas would be used to apply conditional formatting if the value in K10 is more than 5000?

A) =K10>= 5000
B) =K10<5000
C) =K10>5000
D) =K10<=5000


Answer: C

Computer Science & Information Technology

You might also like to view...

Which of the following arithmetic operations is allowed on pointer variables?

A. Increment B. Modulus C. Multiplication D. Division

Computer Science & Information Technology

The result of an arithmetic operation, such as multiplication or division, is accurate to the factor with the least number of decimal places

a. True b. False

Computer Science & Information Technology

What tool should you use to check an HTML document for syntax errors?

A. compiler B. debugger C. validator D. interpreter

Computer Science & Information Technology

Each of the following lines of code purport to round the results of the division of doubles to the nearest integer value (but still of type double). All are correct C++ code but some do not round correctly. Tell which rounds down, up, or to the nearest integer value, or is not reasonable Assume that math.h has been included, and that all variables have appropriate values.

double x, y, z; a) ``` z = ceil(x/y);a) ``` b) ``` z = ceil(x/y-0.5); ``` c) ``` z = floor(x/y-0.5); ``` d) ``` z = floor(x/y+0.5); ``` e)``` z = floor(x/y); ```

Computer Science & Information Technology