Quiz #3

Columns with Divisions

Question 1

<div></div>


A

<div id="left"></div>
<div id="right"></div>


B

<div id="left"><\div>
<div id="right"><\div>


C

Which set of code contains errors?

Question 2

defines three stacked divisions..


A

defines two divisions nested within a third division.


B

would create 3 adjacent columns


C

This code:
<div>
<div></div>
<div></div>
</div>

Question 3

<div></div>
<div></div>


A

<div>
<div></div>
<div></div>
</div>


B

<div>
<div></div>
</div>


C

Which block of code can be used to produce 2 centered columns on a web page?

Question 4

indent the column to the left.


A

name the division or column left.


B

align the text in the column to the left.


C

This code, id="left", is used to:

Question 5

Divisions are the accepted way to divide a web page into columns.


A

Multiple columns cannot be centered on a web page.


B

Columns can only be created using tables.


C

Which statement is correct?