Final answer:
The correct roles of the HTML tags for tables are: for table rows, for table data, and for table headers commonly contain bold, centered text to indicate the headings for columns or rows..
Step-by-step explanation:
The question is asking about the roles of different HTML tags used for creating tables in webpages.The correct answer is C. <th>: Represents table header, <tr>: Represents table rows, <td>: Represents table data.The <th> tag is used to define the header cells in a table. It should be used inside the <tr> tag.
The <tr> tag is used to define each row in a table. It should contain one or more <td> elements, which represent the cells of the table. The correct answer is B: <tr> represents table rows, <td> represents table data, and <th> represents table header. When coding in HTML, <tr> is used to define a row in the table, <td> defines the standard cells in the table that contain data or content, and <th> is used to define header cells, which commonly contain bold, centered text to indicate the headings for columns or rows.