Open a blank spreadsheet. In cell A1 of Sheet 1 enter: 1 In cell A2 of Sheet 2 enter: =Sheet1!A2 In cell A3 of Sheet 3 enter: =Sheet1!A1 + Sheet2!A2 What would be the result in A3? Select one:

a. 1
b. A random number
c. An error
d. A data in cell A1 of sheet 2.


a. 1

Computer Science & Information Technology

You might also like to view...

Which level of management makes decisions using predetermined rules that have predictable outcomes?

A) operations B) middle C) strategic D) None are interested in detailed information.

Computer Science & Information Technology

The use of inline styles is encouraged.

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

Computer Science & Information Technology

The command dd can be destructive if used improperly

Indicate whether the statement is true or false

Computer Science & Information Technology

public static void ExchangeContents (ref T value1, ref T value2) {     T temp;     temp = value1;     value1  = value2;     value2 = temp; } ? ?Which of the following is TRUE regarding the above segment of code?

A. ?The segment of code is defining a generic method.           B. ?T is a placeholder for the data type. C. ?Data in the memory locations value1 and value2 are swapped. D. ?All of the above

Computer Science & Information Technology