To make it easier to read, you could use a ________ line to separate two blocks of text

A) separator
B) paragraph
C) vertical
D) horizontal


D

Computer Science & Information Technology

You might also like to view...

In a queue implemented using a circular array, rear refers to

a) the first available array element at the end of the queue b) the element at the end of the queue c) the number of elements remaining to be used at the end of the array d) the number of elements available at the beginning of the array e) none of the above

Computer Science & Information Technology

The top element in the hierarchy is the html element, which contains all of the other elements within an HTML file.

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

Computer Science & Information Technology

The direct approach is better used to convey negative news

Indicate whether the statement is true or false

Computer Science & Information Technology

The loop for displaying "Beetlejuice" three times is ____.

A. Declare Numeric index = 1 While index < 3    Display "Beetlejuice"    index = index + 1 End While B. Declare Numeric index = 0 While index == 3    Display "Beetlejuice"    index = index + 1 End While C. Declare Numeric index = 0 While index <= 3    Display "Beetlejuice"    index = index + 1 End While D. Declare Numeric index = 0 While index < 3    Display "Beetlejuice"    index = index + 1 End While

Computer Science & Information Technology