Tables — Quiz

Answer all 5 questions, then submit. You need 60% to pass. Log in to save progress.

Question 1
Which element is a table header cell?
A <td>
B <th>
C <tr>
D <head>
Question 2
What does <tr> represent?
A A table column
B A table row
C A table title
D A header cell
Question 3
Where should <caption> go?
A After the </table>
B As the first child of <table>
C Inside a <td>
D In the page <head>
Question 4
Should you use a table to lay out the columns of your page?
A Yes, that's what tables are for
B No — use CSS Flexbox or Grid; tables are for data
C Only on desktop
D Only if you add a caption
Question 5
How do you stop a wide table from breaking the layout on mobile?
A Delete some columns
B Wrap it in a container with overflow-x: auto
C Use smaller text only
D Remove the caption