Friday, 17 January 2020

WT-23


Slip23

Write a java script code to accept a number and write a function to calculate sum of digits of that number           

Write HTML code to create following table. (use External CSS to format the table)          

html>
<body>
<table border=1>

<tr>
<th ROWSPAN="2">Course</th>
<th colspan="3">Fee Structure</th>
<th ROWSPAN="2">year</th>
</tr>

<tr>
<td>Fy</td>
<td>Sy</td>
<td>Ty</td>
</tr>


<tr>
<td>BSC</td>
<td>20</td>
<td>25</td>
<td>30</td>
<td>2017</td>
</tr>

<tr>
<td>BCA</td>
<td>20</td>
<td>25</td>
<td>30</td>
<td>2017</td>
</tr>

</table>
</body>
</html>