Which of the following is not a conditional formatting option?

A. Data bars
B. Color Scales
C. Icon Sets
D. Table format


Answer: D

Computer Science & Information Technology

You might also like to view...

(Stroustrup, Design and Evolution of C++, page 411ff) In each of a) through i), which variable is a local variable? Which statement makes names from a namespace available? (What namespace?) Which are an error? (If so, why?) Which introduce a variable from a namespace? (What namespace?) Which hide a global variable?

What will be an ideal response? ``` #include namespace X { int i, j , k; } int k; void f1() { int i = 0; using namespace X; //a) i++; //b) j++; //c) k++; //d) ::k++; //e) X::k++; //f) using X::i; //g) using X::k; //h) using std::cout; //i) } ```

Computer Science & Information Technology

When a disk is first formatted, a single __________ is created.

a. directory b. root directory c. directory structure d. The premise of this question is false.

Computer Science & Information Technology

NP-complete problems

a. have no known solution b. have too many possibilities to solve c. must consider every possible solution to find the best one d. can be solved with a work- proportional-to-n algorithm

Computer Science & Information Technology

Solve the following pairs of linear equations by graphing. Confirm the solution using algebra.

y = 3x — 2 and y x Intersection at (1, 1) x=1 y=1 ![14970|322x379](upload://9MQZJY0xZUq3lDqVKniqT0yh1Lf.jpeg)

Computer Science & Information Technology