You can apply font styles and alignment options using the ____ dialog box.

A. Format Cells
B. Insert
C. Conditional Formatting
D. AutoCorrect


Answer: A

Computer Science & Information Technology

You might also like to view...

The collections framework algorithms are __________, i.e., each of these algorithms can operate on objects that implement specified interfaces without concern for the underlying implementations.

a. stable. b. lexicographical. c. polymorphic. d. implementation dependent.

Computer Science & Information Technology

What is wrong with this call statement? PrintName(string name);

A. It’s missing “void”. B. The datatype should be removed. C. The semicolon should be removed. D. Nothing is wrong with it.

Computer Science & Information Technology

To check if a string s contains the prefix "Java", you may write

``` a. if (s.startsWith("Java")) ... b. if (s.indexOf("Java") == 0) ... c. if (s.substring(0, 4).equals("Java")) ... d. if (s.charAt(0) == 'J' && s.charAt(1) == 'a' && s.charAt(2) == 'v' && s.charAt(3) == 'a') ... ```

Computer Science & Information Technology

A(n) ________ is a horizontal set of cells that encompasses all the columns in a worksheet

Fill in the blank(s) with correct word

Computer Science & Information Technology