The standard business envelope is ____.

A. #8 landscape
B. #10 landscape
C. 5 3/4" envelope
D. 3 1/2" envelope


Answer: B

Computer Science & Information Technology

You might also like to view...

What is wrong with the above code?

```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. Line 2 – should be seed(123); B. Line 5 – rand() should have a number in the parentheses for random number generation C. Line 3 – should be i=1000; D. None the above.

Computer Science & Information Technology

In an outline, ________ is the keyboard shortcut to decrease the list level

A) Tab B) Shift + Tab C) Ctrl + Tab D) Alt + Tab

Computer Science & Information Technology

Data and Model, Titles and Headings, and Number Format are all examples of predefined ________

Fill in the blank(s) with correct word

Computer Science & Information Technology

In the IF function, the first argument sets a condition for comparison, called a relative test.

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

Computer Science & Information Technology