Sovi.AI - AI Math Tutor

Scan to solve math questions

QUESTION IMAGE

the ____ tag uses the border attribute. < table > < td > < tr > < th > …

Question

the ____ tag uses the border attribute.
< table >
< td >
< tr >
< th >
which of the following table properties set the layout algorithm to be used for a table?
table layout
table display
table algorithm
table position

Explanation:

First Question:
Brief Explanations

In HTML, the <table> tag is used to create a table and it supports the border attribute to define the border around the table. The <td> (table data), <tr> (table row), and <th> (table header) tags do not use the border attribute in the same way as the <table> tag for the overall table border.

Brief Explanations

The "table layout" property in CSS (or related table properties) is used to set the layout algorithm for a table. "Table display" is about how the table is displayed (e.g., as a table, inline - table etc.), "Table Algorithm" is not a standard table property term, and "Table position" is about the positioning of the table (e.g., relative, absolute) not the layout algorithm.

Answer:

A. <table>

Second Question: