edited by
4,727 views
2 votes
2 votes

Consider a HTML table 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>

The number of rows in each column and the number of columns in each row are:

  1. $\left\langle 2, 2, 3 \right\rangle \text{ and } \left\langle 2, 3, 2 \right\rangle$

  2. $\langle 2, 2, 3 \rangle \text{ and } \langle 2, 2, 3 \rangle$

  3. $\langle 2, 3, 2 \rangle \text{ and } \langle 2, 3, 2 \rangle$

  4. $\langle 2, 3, 2 \rangle \text{ and } \langle 2, 2, 3 \rangle$

edited by

2 Answers

Answer:

Related questions

0 votes
0 votes
0 answers
3
4 votes
4 votes
3 answers
4
Ishrat Jahan asked Oct 27, 2014
4,057 views
Which of the following is TRUE only of XML but NOT HTML?It is derived from SGMLIt describes content and layoutIt allows user defined tagsIt is restricted only to be used ...