In Microsoft Word, the Line Spacing button is in the ____ group on the Home tab.

A. Styles
B. Paragraph
C. Insert
D. Themes

Answer: B

Computer Science & Information Technology

You might also like to view...

What does the following method do?

``` // Parameter b must be positive to prevent infinite recursion static int Mystery(int a, int b) { if (b == 1) { return a; } else { return a + Mystery(a, b - 1); } } ```

Computer Science & Information Technology

If you do not use the mini toolbar, it remains on the screen. _______________

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

Computer Science & Information Technology