You can press the ____ key to cycle a selected cell reference from a relative reference to an absolute reference to a mixed reference with an absolute row to a mixed reference with an absolute column and back to a relative reference.

A. F1
B. F2
C. F3
D. F4


Answer: D

Computer Science & Information Technology

You might also like to view...

What does the following program do?

``` // What does this program do? #include using namespace std; int whatIsThis( int [], int ); // function prototype int main() { const int arraySize = 10; int a[ arraySize ] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }; int result = whatIsThis( a, arraySize ); cout << "Result is " << result << endl; } // end main // What does this function do? int whatIsThis( int b[], int size ) { if ( size == 1 ) // base case return b[ 0 ]; else // recursive step return b[ size - 1 ] + whatIsThis( b, size - 1 ); } // end function whatIsThis ```

Computer Science & Information Technology

You recently printed a handout using a slide with an image; now you want to project the slide during the presentation. Which image characteristic should you check?

What will be an ideal response?

Computer Science & Information Technology

int[][] myVals = {{2, 4, 6, 8},                   {20, 40, 60, 80} }; ? Using the above two-dimensional array, what is the value of myVals[1][2]?

A. 4 B. 60 C. 6 D. 40

Computer Science & Information Technology

You can create a new bullet style using a symbol or picture.

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

Computer Science & Information Technology