Alyson recently graduated from college with a degree in accounting. She has applied with numerous companies and is fortunate to have three job offers. In considering which job to accept, Alyson opens a Word document to list the pros and cons of each offer.Alyson can apply left tabs, center tabs or right tabs for any or all of the columns by clicking on the ____ at the top of the vertical ruler.

A. margins button
B. tab indicator
C. indent setting
D. default tab stop


Answer: B

Computer Science & Information Technology

You might also like to view...

Which of the following expressions will generate a random number in the range of 1 through 10?

a. myNumber = randomNumbers.nextInt(10); b. myNumber = randomNumbers.nextInt(1) + 10; c. myNumber = randomNumbers.nextInt(11) - 1; d. myNumber = randomNumbers.nextInt(10) + 1;

Computer Science & Information Technology

We cannot always return by reference because:

A. we might be returning a local object, which would be destroyed at the end of function execution B. we might not want changes in the object of the called function to be reflected back to the calling function C. the address of the returned object might not be known D. the name of the object is not always permanent

Computer Science & Information Technology

Suppose s1 and s2 are two strings. Which of the following statements or expressions are incorrect?

a. String s = new String("new string"); b. String s3 = s1 + s2 c. s1 >= s2 d. int i = s1.length e. s1.charAt(0) = '5'

Computer Science & Information Technology

Instead of hard coding the actual filename and file path, you could prompt the user for the name of the file using subclasses of the FileDialog class.

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

Computer Science & Information Technology