To combine cells into a single cell, you click Merge Cells located in the:
A) Merge group on the TABLE TOOLS LAYOUT tab.
B) Combine group on the TABLE TOOLS DESIGN tab.
C) Merge group on the TABLE TOOLS DESIGN tab.
D) Combine group on the TABLE TOOLS LAYOUT tab.
A
You might also like to view...
_________ flow displays the elements on the page in the order they appear in the web page source code.
a. default b. source code c. browser d. normal
Setting the background-repeat property to _________ tiles the specified background-image only vertically.
Fill in the blank(s) with the appropriate word(s).
The ________ of terror is less important than the emotional or psychological repercussions resulting from the act
Fill in the blank(s) with the appropriate word(s).
What is the output of the following code?
``` int[] numbers = new int[10]; for(int i=0; i < numbers.length; ++i) numbers[i] = i * 2; for(int i=0; i < numbers.length; ++i) System.out.print(numbers[i] + " "); System.out.println(); ```