If you wanted every cell that has a value over $1,251 to have a purple fill, you would use what feature in Excel?

A. Conditional formatting
B. AutoFill formatting
C. AutoComplete formatting
D. Aggregate Cell formatting


Answer: A

Computer Science & Information Technology

You might also like to view...

What is the output of the following code:

int p = 5 + 7/2; switch (p) { case 5: cout << ‘a’; break; case 7: cout << ‘b’; break; case 8: cout << ‘c’; break; default: cout << “None of the above”; } a) a b) b c) c d) None of the above

Computer Science & Information Technology

Which line of code should be used to make the following code snippet work?

``` var longString = "Great day, isn't it?"; var shortString = _____???_______ document.write("It's going ton rain to" + shortString); ``` a. ``` shortString = longString.substr(20, 7); ``` b. ``` shortString = longString.substr(6, 3); ``` c. ``` shortString = substr(longString, 6, 3); ``` d. ``` shortString = longString.substr(7, 3); ```

Computer Science & Information Technology

________ is a microblogging platform for social networking

Fill in the blank(s) with correct word

Computer Science & Information Technology

Click the Calendar content control button in the Controls group to insert a calendar from which users can select a date. _________________________

Answer the following statement true (T) or false (F)

Computer Science & Information Technology