To find specific text in a document, you can use the _____ tab in the Navigation pane, which you open by clicking the Find button in the Editing group on the Home tab.?

A. ?Results
B. ?Pages
C. ?Links
D. ?References


Answer: A

Computer Science & Information Technology

You might also like to view...

________ creates a visual representation of concepts and information and can be used to show hierarchies, processes, or cycles

A) A WMV file B) A table C) ClipArt D) SmartArt

Computer Science & Information Technology

A __________ is a group of one or more domain trees.

a. copse b. forest c. glen d. none of the above

Computer Science & Information Technology

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

In object-oriented analysis, classes are defined by

a. objects and data. b. data and methods. c. operators and objects. d. behaviors and keywords.

Computer Science & Information Technology