The concept that similar items should be handled consistently throughout a document is called ____.

A. internal consistency
B. parallel structure
C. technical accuracy
D. structural integrity


Answer: B

Computer Science & Information Technology

You might also like to view...

Explain the result of the following computer program fragment (pseudo code):

```variable = 17 variable = 18 print variable ``` a. The number 17 will be printed b. The number 18 will be printed c. The word "variable" will be printed d. Both numbers 17 and 18 will be printed. e. None of the above.

Computer Science & Information Technology

USB (choose the correct one.)

a. is intended as a long distance network connection b. is intended as a high-speed desktop serial interface c. offers parallel transmission options d. is faster than Firewire

Computer Science & Information Technology

Use the ______ element to create logical areas on a web page that are embedded within paragraphs or other block formatting elements.

a. div b. span c. both a and b d. neither a nor b

Computer Science & Information Technology

Line 5 – What numbers will be generated?

```1 int numList[1000]; 2 srand(123); 3 for(int i = 0; i<1000; i++) 4 { 5 numList[i] = rand()%1000 +5; 6 cout << numList[i]; 7 }``` A. 5 through 1000 B. 0 through 1004 C. 5 through 1004 D. compiler error – there should be a number in the parentheses for rand()

Computer Science & Information Technology