22.
Identify the set of tags that are all used within HTML tables.
<a>, <tr>, <td>
<th>, <tr>, <td>
<img>, <table>, <th>
<td>, <tr>, <a>
Correct: B
In HTML a "table" consists of the <table> element and one or more <tr>, <th>, and <td> elements. <tr> stands for table row. <th> stands for table header, and <td> stands for table data.