Only one ____ macro can exist for all Word documents.

A. AutoFit
B. AutoSave
C. AutoExec
D. AutoNew


Answer: C

Computer Science & Information Technology

You might also like to view...

The output from the following code is __________.

``` java.util.ArrayList list = new java.util.ArrayList(); list.add("New York"); java.util.ArrayList list1 = list; list.add("Atlanta"); list1.add("Dallas"); System.out.println(list1); ``` a. [New York] b. [New York, Atlanta] c. [New York, Atlanta, Dallas] d. [New York, Dallas]

Computer Science & Information Technology

What is not true about an effective chart?

A) It is clear. B) It is easy to understand. C) It always contains more than one series. D) It is useful.

Computer Science & Information Technology

The ____ type is the specific category of information that a variable contains.

A. variable B. data C. content

Computer Science & Information Technology

Which of the following statements about strings is false?

A. Strings are declared as character arrays. B. As long as they are identically declared, including their length, one string may be assigned to another. C. Strings may be declared as a character pointer. D. When a string is initialized, we do not need to specify the size of the array. E. Strings can be read and written using the formatted I/O functions or special string I/O functions.

Computer Science & Information Technology