The heading element provides _____ heading levels to structure a page's outline.

a. Five
b. Six
c. Ten
d. Twelve


b. Six

Computer Science & Information Technology

You might also like to view...

Assume that an integer array named intValues contains intNUM elements. Which of the following code segments most efficiently finds the largest element in the array and displays it in a label named lblMaxValue? Assume that values have already been inserted into the array.

a. ```For intIndex = 0 To intNUM – 1 If (intValues(intIndex) > CInt(txtMax.Text)) Then lblMaxValue.Text = intValues(intIndex).ToString End If Next intIndex ``` b. ```intMax = intValues(0) For intIndex = 1 to intValues.length - 1 If intValues(intIndex) > intMax Then intMax = intValues(intIndex) End If Next lblMaxValue.text = intMax.ToString ``` c. ```For intIndex = 0 To intNUM If intValues(intIndex) > intMax Then intValues(intIndex) = intMax End If Next lblMaxValue.Text = intMax.ToString ``` d. ```intMax = intValues(0) For intIndex = 1 To intValues.length If intValues(intIndex) > intMax) Then intMax = intValues(intIndex) lblMaxValue.Text = intMax.ToString End If Next ```

Computer Science & Information Technology

Interfaces can have_________methods.

a. 0 b. 1 c. 2 d. any number of

Computer Science & Information Technology

Which function prototype called PassThis passed the array Table and returns no values?

Refer to the code below for the next three questions that follow: int Table[4][3]={3, 2, 8, 6, 7, 4, 1, 5, 8, 0, 9, 1}; A. void PassThis(int tbl[ ],[ ]); B. void PassThis(int tbl[ ]); C. void PassThis(int tbl[ ][3]); D. void PassThis(int tbl[4][ ]);

Computer Science & Information Technology

The default value for the vertical-align property is ____.

A. bottom B. top C. middle D. baseline

Computer Science & Information Technology