A cell label such as B1 is referred to as the cell's address

Indicate whether the statement is true or false

TRUE

Computer Science & Information Technology

You might also like to view...

When a formula contains the wrong type of data, the ________ error indicator occurs

A) #VALUE B) #NAME? C) #REF? D) #N/A

Computer Science & Information Technology

Consider the following function definition:

``` void tripler(int& n) { n = 3*n; ``` a) tripler(a[2]); b) tripler(a[3]); c) tripler(a[number]); d) tripler(a); e) tripler(number);

Computer Science & Information Technology