To no longer display black borders around selected table cells,

A) on the Layout tab, in the Table Group, click View Gridlines.
B) select the table cells, right-click, and click Remove Borders.
C) from the Page Layout tab, open the Paragraph dialog box and clear the Cell Borders check box.
D) on the Table tools Design tab, in the Borders Group, click the Borders button arrow and click No Border.

D

Computer Science & Information Technology

You might also like to view...

You can use the Ribbon, the status bar, or the Font dialog box to apply font styles and effects

Indicate whether the statement is true or false

Computer Science & Information Technology

Assume the file Alphabet.txt contains 26 records, the lowercase letters of the alphabet in ascending order. What is stored in Target.txt after the following code is executed?

``` Dim letter As String Dim sr As IO.StreamReader = IO.File.OpenText("lphabet.txt" Do While Not sr.EndOfStream Dim sw As IO.StreamWriter = IO.File.CreateText("arget.txt" letter = sr.ReadLine sw.WriteLine(letter) sw.Close() Loop sr.Close() ``` (A) The alphabet in descending order. (B) The alphabet in ascending order. (C) a (D) z

Computer Science & Information Technology