The default paragraph after spacing for a new, blank document in Word 2013 is ________

A) 8 pt
B) 0 pt
C) 6 pt
D) 12 pt


A

Computer Science & Information Technology

You might also like to view...

Assume the file Alphabet.txt contains 26 records, the lowercase letters of the alphabet in ascending order. What happens when the following code is executed?

``` Dim letter As String Dim sr As IO.StreamReader = IO.File.OpenText"Alphabet.txt" Do While Not sr.EndOfStream letter = sr.ReadLine Dim sw As IO.StreamWriter = IO.File.CreateText(letter.ToUpper & "txt" sw.WriteLine(letter.ToUpper & "xt" sw.Close() Loop sr.Close() ``` (A) A"too many files open"error is produced. (B) Twenty-six files are created and named with one of the uppercase letters of the alphabet and each containing only its own file name. (C) A file called z is created containing all of the letters of the alphabet in lowercase. (D) An "nvalid file name"error is produced.

Computer Science & Information Technology

In pseudocode, the “While … End while” loop is considered a:

a. Pre-condition loop. b. Post condition loop. c. Nested loop d. Sequential loop. e. None of the above.

Computer Science & Information Technology

A professional presentation has fonts sized between 10 and 14 points

Indicate whether the statement is true or false

Computer Science & Information Technology

The BIOS is a series of small programs and drivers that allow the CPU to communicate with basic system devices.

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

Computer Science & Information Technology