CBSE Class 10 Computer Applications Question 10 of 12

Solved Sample Paper 5 — Question 5

Back to all questions
5
Question

Question 23

Ayushi has to prepare a demo table in which she has to mention question number and its marking. Help her to write the code for the below table.

Ayushi has to prepare a demo table in which she has to mention question number and its marking. Help her to write the code for the table. Computer Applications Code 165 Sample Paper Solved CBSE Class 10.
Answer
<TABLE>
<TR>
    <TH> question </TH>
    <TH> marks</TH>
</TR>
<TR>
    <TD ROWSPAN = "3"> 1 </TD>
    <TD> 2 </TD>
</TR>
<TR>
    <TD> 2 </TD>
</TR>
<TR>
    <TD> 5 </TD>
</TR>
</TABLE>