If the numeric values in cells B1:B9 are selected, and row 10 is empty when the AutoSum button is clicked, the sum of the range (B1:B9) appears in cell ________

Fill in the blank(s) with the appropriate word(s).


Answer: B10

Computer Science & Information Technology

You might also like to view...

You can use a form or report ____________________ Wizard to create a chart in Access.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

The loop can best be categorized as a __________.

``` z = 0; g = 0; s = 0; i = 0; while (i < 50) { scanf("%d", &t); s = s + t; if (t >= 0) g = g + 1; else z = z + 1; i = i + 1; } ``` a. counter-controlled loop b. sentinel-controlled loop c. loop that computes a product d. general conditional loop e. none of the above

Computer Science & Information Technology

The following code should print whether integer value is odd or even:

``` switch (value % 2) { case 0: cout << "Even integer" << endl; case 1: cout << "Odd integer" << endl; } ```

Computer Science & Information Technology

You can apply WordArt text fill to text that appears in more than one location on a slide by making the first selection and then pressing and holding the ____ key as you select other text.

A. SHIFT B. COMMAND C. ALT D. TAB

Computer Science & Information Technology