Non-adjacent cells can be selected in a worksheet by holding down the ________ key

A) Shift
B) Alt
C) Ctrl
D) Home


Answer: C

Computer Science & Information Technology

You might also like to view...

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

Consider the following declarations as you determine if each of assignment statements 1 - 7 is valid. ``` #define HALF_CENT 50 #define A_SIZE 26 char a_list[HALF_CENT], b_list[HALF_CENT], a_char = 'v'; int nums[A_SIZE], vals[A_SIZE], i = 1; ``` 1. nums[0] = nums[25]; 2. nums = vals + 1; 3. a_list[50] = 'd'; 4. b_list[30] = 0.37 * vals[1]; 5. a_list = b_list; 6. nums[5] = (int)a_char 7. for (i = 1; i <= A_SIZE; ++i) nums[A_SIZE - i] = i;

Computer Science & Information Technology

Charles needs to make changes to a flyer prepared by a friend. Charles does not like the gradient that his friend used for a section of the flyer. He double-clicked it to open the ____.

A. Gradient window B. Gradient panel C. Swatches panel D. Color panel

Computer Science & Information Technology

You CANNOT export Access data to a(n) ________

A) Excel spreadsheet B) Word document C) Access table D) PowerPoint presentation

Computer Science & Information Technology

The insertion sort algorithm sorts a list by repeatedly inserting an element in its proper place into a sorted sublist.

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

Computer Science & Information Technology