Which formatting applied to a document sets the equivalent of a blank line between each pair of text lines?

A) single-spacing
B) double-spacing
C) 1.5 spacing
D) triple-spacing

B

Computer Science & Information Technology

You might also like to view...

A query displays only the information that you requested

Indicate whether the statement is true or false

Computer Science & Information Technology

where i is the square root of -1. Which of the following statements is false?

Complex numbers have the form ``` realPart + imaginaryPart * i ``` a) C#’s simple numeric types are value types. b) To mimic the simple numeric types, we can define ComplexNumber as a value type by using a struct (short for “structure”) rather than a class. c) C#’s simple types like int and double are actually aliases for struct types. d) Microsoft recommends using structs for most new types, but recommends a class if the type represents a single value.

Computer Science & Information Technology