Click the Formula button in the ____ group on the Table Tools Layout tab to open the Formula dialog box.

A. Table
B. Rows & Columns
C. Formulas
D. Data


Answer: D

Computer Science & Information Technology

You might also like to view...

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

1. In C++ you can assign an expression of type double to a variable of type int with no problem. 2. To put a character into a cstring constant that causes the output to continue on the next line, insert the escape sequence \t into the string constant. 3. If we execute this code in an otherwise correct and complete program: ``` n = 1; n = (n++) + (n++); ``` the value of n is guaranteed to be 3 after the second line executes. 4. If we execute the code fragment in an otherwise complete, correct program: ``` n = 1; cout << n++ << " " << n++ << " " << n++ << endl; ``` the output is guaranteed to be 1 2 3. 5. C++ uses only /* */ for comments.

Computer Science & Information Technology

_____ is a consortium of researchers, educators, and technology leaders from industry, government, and the international community who are dedicated to thedevelopment of revolutionary Internet technologies.

A. ?E-portfolio B. ?Fotki C. ?Vonage D. ?Internet2

Computer Science & Information Technology

Which of the following is NOT a relational operator in Java?

A. <> B. <= C. == D. >

Computer Science & Information Technology

The ________ function calculates the interest rate per period for an investment or loan, given that you know the present value of the loan, payment amount, and number of payment periods

A) NPER B) IPMT C) NPV D) RATE

Computer Science & Information Technology