-
For adding caption to the table we use ____________.
-
- <th>
- <tr>
- <caption>
- <thead>
- None of these
Correct Option: C
For adding caption to the table we use <caption> tag. It should be used just below the <table> tag.Syntax is
<table>
<caption> Savings </caption>
<tr> <th> saving </th><th>loss</th> </tr> <tr><td>$12</td>$45<td></td> </tr>
</table>.
<thead> tag contains the group of header. <tr> is used to indicate start of every row i.e. it stands for table row. The header information is present in <th> tag.