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
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
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
What tool should you use to check an HTML document for syntax errors?
A. compiler B. debugger C. validator D. interpreter
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); ```