The Columns button is found in the ________ group under the Page Layout tab

A) Page Setup B) Paragraph C) Page Background D) Arrange


A

Computer Science & Information Technology

You might also like to view...

A(n) ________ is a set of numbers and letters that have the same design and shape

Fill in the blank(s) with correct word

Computer Science & Information Technology

Consider the following definition of a recursive method.public static int recFunc(int num){      if (num >= 10)           return 10;      else           return num * recFunc(num + 1);}What is the output of the following statement?System.out.println(recFunc(10));

A. 10 B. 110 C. This statement results in infinite recursion. D. None of these

Computer Science & Information Technology

You can NOT name a folder Shared Documents because it is a ________ name

Fill in the blank(s) with correct word

Computer Science & Information Technology

Choose the correct verb to agree in number with the subject of the following sentence. Fifteen dollars __________ adequate to cover the cost of lunch.?

A. ?is B. ?are

Computer Science & Information Technology