Excel
Activity 1 (page no.3)
Q. What is excel?
A. Excel is an spreadsheet software that is used to analyse numerical data. Exel is also used to make charts, tables, report cards etc.
Q. What are the elements of Excel?
A.
Q. How will you create same table as given in Activity 1? How will you calculate total marks and percentage?
Ans.
HTML
Activity 1 (Page 7)
<html>
<head>
<title>
<body>
<h1>, <h2>,
etc.
<p>
<sub>
<sup>
Activity 3 (Page 8)
<!DOCTYPE html>
<html>
<head>
<title>Activity 3</title>
</head>
<body>
<table border="1">
<tr bgcolor="yellow">
<td colspan="5" align=center><b>Details of Student<b></td>
</tr>
<tr>
<td rowspan="2" bgcolor="yellow">Student Name</td>
<td colspan="2" align=center bgcolor="lightgreen">Half Yearly Exam</td>
<td colspan="2" align=center bgcolor="lightgreen">Final Examination Marks</td>
</tr>
<tr>
<td align=center bgcolor="lightgreen">Theory</td>
<td align=center bgcolor="lightgreen">Practical</td>
<td align=center bgcolor="lightgreen">Theory</td>
<td align=center bgcolor="lightgreen">Practical</td>
</tr>
<tr>
<td>Mohit</td>
<td align=center>56</td>
<td align=center>28</td>
<td align=center>65</td>
<td align=center>27</td>
</tr>
<tr>
<td>Mohini</td>
<td align=center>61</td>
<td align=center>25</td>
<td align=center>59</td>
<td align=center>29</td>
</tr>
</table>
</body>
</html>
Comments
Post a Comment