List at least five commonly used AutoFormat As You Type options. In your response, provide both what the initially typed text is and what the AutoFormat result is.

What will be an ideal response?


•       Quotation marks or apostrophes: Changes straight quotation marks or apostrophes to curly ones
•       Text, a space, one hyphen, one or no spaces, text, space: Changes the hyphen to an en dash
•       Text, two hyphens, text, space: Changes the two hyphens to an em dash
•       Web or e-mail address followed by the SPACE BAR or RETURN key: Formats Web or e-mail address as hyperlink
•       Three hyphens, underscores, equal signs, asterisks, tildes, or number signs and then RETURN key: Places a border above a paragraph
•       Number followed by a period, hyphen, right parenthesis, or greater than sign and then a space or tab followed by text: Creates a numbered list
•       Asterisk, hyphen, or greater than sign and then a space or tab followed by text: Creates a bulleted list
•       Fraction and then a space or hyphen: Condenses the fraction entry so that it consumes one space instead of three
•       Ordinal and then a space or hyphen: Makes part of the ordinal a superscript

Computer Science & Information Technology

You might also like to view...

A(n) range is a series of cells.

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

Computer Science & Information Technology

Under what circumstances would you not provide a parameter name when defining the type of the object that will be caught by a handler?

What will be an ideal response?

Computer Science & Information Technology

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

1. The break statement allows you to skip one iteration in a loop. 2. The continue statement is used to skip all or part of a loop iteration and then finishes the rest of the loop's iterations. 3. The following code will accurately find the average of four numbers entered by the user: ``` var sum = 0; for(var count = 0; count < 4; count++) sum = sum + parseFloat(prompt("Enter a number:"); var average = sum/count; ``` 4. Desk checking is only used to check the results of summing or averaging values. 5. The accumulator is the variable that holds the total of a sum of values in a loop.

Computer Science & Information Technology

The process of converting vector graphics to bitmap images for editing and printing them is called ____.

A. resolving B. iconization C. dithering D. rasterizing

Computer Science & Information Technology