When you first start Excel, the active cell in the new workbook is ____.

A. cell 1A
B. cell A1
C. cell 1
D. cell A


Answer: B

Computer Science & Information Technology

You might also like to view...

Show the printout of the following code:

``` #include using namespace std; void swap(int n1, int n2) { int temp = n1; n1 = n2; n2 = temp; } int main() { int a[] = {1, 2}; swap(a[0], a[1]); cout << "a[0] = " << a[0] << " a[1] = " << a[1] << endl; return 0; } ```

Computer Science & Information Technology

There are how many different cell references?

A) 2 B) 3 C) 4 D) 5

Computer Science & Information Technology

Windows Remote Management provides a graphical user interface for performing a variety of management tasks.

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

Computer Science & Information Technology

Steve Jobs was an early proponent of mobile computer devices.

a. true b. false

Computer Science & Information Technology