The ________ feature in Word enables users to share their work with others via the Internet

Fill in the blank(s) with correct word


Online Presentation

Computer Science & Information Technology

You might also like to view...

What is the output of the following program?

``` public class Test { public static void main(String[] args) { int[][] values = {{3, 4, 5, 1}, {33, 6, 1, 2}}; for (int row = 0; row < values.length; row++) { System.out.print(m(values[row]) + " "); } } public static int m(int[] list) { int v = list[0]; for (int i = 1; i < list.length; i++) if (v < list[i]) v = list[i]; return v; } } ``` a. 3 33 b. 1 1 c. 5 6 d. 5 33 e. 33 5

Computer Science & Information Technology

Which of the following types of queries combines the results of two or more similar select queries?

A) Crosstab B) Append C) Union D) Parameter

Computer Science & Information Technology

Which of the following agencies regulates financial institutions not covered by other agencies?

A. Federal Trade Commission (FTC) B. Commodity Futures Trading Commission (CFTC) C. National Credit Union Administration (NCUA) D. Federal Deposit Insurance Corporation (FDIC)

Computer Science & Information Technology

What are shadows and outlines examples of?

A. text effects B. text styles C. font effects D. font styles

Computer Science & Information Technology