Adding ________ to a Word document help draw the reader's attention or highlight an important fact or idea

A) words
B) paragraphs
C) styles
D) graphics


D

Computer Science & Information Technology

You might also like to view...

In the following code that uses recursion to find the greatest common divisor of a number, what is the base case?

``` public static int gcd(int x, int y) { if (x % y == 0) return y; else return gcd(y, x % y); } ``` a. gcd(int x, int y) b. if (x % y == 0) return y; c. else return gcd(y, x % y); d. Cannot tell from this code

Computer Science & Information Technology

The MSBA tool can quickly identify missing patches and misconfigurations.

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

Computer Science & Information Technology

When you want to copy a file from a remote site to a local site, you use FTP client software to _______________ the file.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

A reference variable whose sole purpose is to locate the first node in a linked list is called ______.

a) top b) front c) head d) first

Computer Science & Information Technology