Once you complete a mail merge, you will have how many files?

A. one
B. two
C. three
D. four


Answer: C

Computer Science & Information Technology

You might also like to view...

Analyze the following code:

``` public class Test { public static void main(String[] args) { final int[] x = {1, 2, 3, 4}; int[] y = x; x = new int[2]; for (int i = 0; i < y.length; i++) System.out.print(y[i] + " "); } }``` a. The program displays 1 2 3 4 b. The program displays 0 0 c. The program has a compile error on the statement x = new int[2], because x is final and cannot be changed. d. The elements in the array x cannot be changed, because x is final.

Computer Science & Information Technology

The accompanying figure illustrates the use of _____.

A. Windows Security Controls B. Windows Privacy Controls C. Windows Family Safety Controls D. Windows Parental Controls

Computer Science & Information Technology

To use the RPM utility in removing mode, you must be a(n) ____.

A. owner B. administrator C. supervisor D. root user

Computer Science & Information Technology

What term does PowerPoint use when referring to the comments and annotations added to a presentation?

A) Edit Notes B) Reviewer Notes C) Markings D) Markup

Computer Science & Information Technology