Give some sample questions for practise of HTML code and XML tree coding .
Please provide fast , its urgent !!
Answers
Consider the HTML t able definition given below:
< table border=1>
<tr>
<td rowspan=2> ab </td>
<td colspan=2> cd </td>
</tr>
<tr>
<td> ef </td>
<td rowspan=2> gh </td>
</tr>
<tr> <td colspan=2> ik </td>
</tr>
</table>.
Which of following statements is/are False?
1. XML overcomes the limitations in HTML
to support a structured way of organizing content.
2. XML specification is not case sensitive while
HTML specification is case sensitive.
3. XML supports user defined tags while HTML
uses pre-defined tags.
4. XML tags need not be closed while HTML
tags must be closed.
Explanation:
Consider the HTML t able definition given below:
< table border=1>
<tr>
<td rowspan=2> ab </td>
<td colspan=2> cd </td>
</tr>
<tr>
<td> ef </td>
<td rowspan=2> gh </td>
</tr>
<tr> <td colspan=2> ik </td>
</tr>
</table>