Excel Sheet: Information Technology Management Assignment
Excel Sheet: Information Technology Management Assignment
TECHNOLOGY MANAGEMENT
ASSIGNMENT
– EXCEL SHEET
AUTO-SUM
Step 1
To sum a column, select the cell immediately below the last value in the
column.
To sum a row, select the cell to the right of the last number in the row.
Step 2
A Sum formula appears in the selected cell, and a range of cells you're adding gets
highlighted
Step 3
Fig: 2 Averages
Step 1
Enter the numbers you want to find the average of.
Step 2
Find the average of the numbers you entered.
Step 3
Observe the result in the cell you entered the
formula in.
PERCENTAGE
Fig. 3 Percentag
Fig. 4 Minimum
Fig 5 Maximum
Fig 10 PIECHART
Fig 11 COLUMN CHART
Fig 12 LINECHART
CHARTS
Step 2=Select the Data tab and then locate the Sort &
Filter group. Click the Filter command.
<title> <i><u><b1>"Myself"</i></u></b1></title>
</head>
<body>
</body>
</html>
Q2. Create a table.
Ans.
<html>
<head>
<title> "Table </title>
</head>
<body>
<table border="1">
<tr>
<th> First Name</th>
<th> Last Name</th>
<th> Address</th>
</tr>
<tr>
<td>Myra</td>
<td> Singh</td>
<td> Delhi</td>
</tr>
<tr>
<td>Amara </td>
<td> Singh</td>
<td> Delhi</td>
</tr>
<tr>
<td>Amita </td>
<td> Singh </td>
<td> Delhi</td>
</tr>
</table>
</body>
</html>
FIRST NAME LAST NAME ADDRESS
MYRA SINGH DELHI
AMARA SINGH DELHI
AMITA SINGH DELHI
Q3. Create a form
a) Name, b)City, c)State, d)Email
Submit, Reset and OK button.
Ans.
<html>
<head>
<title>"Form" </title>
</head>
<body>
<form method="post"action="handler/welcome.php">
Name: <input type="text"
name="Student_name"><br><br>
City: <input type="text" name="city_name"><br><br>
State: <input type="text"
name=State_name"<br><br>
Email: <input type="text"Email_id"<br><br>
<input type "submit" name="submit_button">
<input type "reset" name="reset" value="Reset"/>
<input type="button" name="OK" value="OK"/>
</form>
</body>
</html>
Q4. Write a program for <Font> tag.
Ans.
<html>
<head>
<title>Font tag</title>
</head>
<body>
<font size="1"> vinay</font><br>
<font size="2"> vinay</font><br>
<font size="3"> vinay</font><br>
<font size="4">vinay</font><br>
<font size="5"> vinay</font><br>
<font size="6"> vinay</font><br>
</body>
</html>
Q5. Write a program of background image.
Ans.
<html>
<head>
<title> Background Image</title>
</head>
<body>
<div style="back-groundimage:url(http://www.html.am/images/image-
codes/milford_sound_t.jpg);width:300px;height:200px;color:black;font-
size:18px;">
GOOD MORNING
</div>
</body>
</html>
Q6. Write a program for HOME|ABOUT US|CONTACT US|BLOG<div>.
Ans.
<html>
<head>
<title> Div tag</title>
</head>
<body>
<div id="menu" align="middle">
<a href="/index.htm">HOME</a>
<a href="/about/contact_us.htm> CONTACT</a>
<a href="about/index.htm>ABOUT</a>
</div>
</body>
</html>
Q7. Write a program for Order list or <ol>.
Ans.
<html>
<head>
<title> Order List</title>
</head>
<body>
<ol>
<li>Beetroot</li>
<li>Ginger</li>
<li>Potato</li>
<li>Radish</li>
<li>Spanich</li>
<li>Brinjal</li>
</ol>
</body>
</html>
Q8. Write a program for unordered list.
Ans.
<html>
<head>
<title> Unorder List</title>
</head>
<body>
<ul>
<li>Beetroot</li>
<li>Ginger</li>
<li>Potato</li>
<li>Radish</li>
<li>Spanich</li>
<li>Brinjal</li>
</ul>
</body>
</html>
Q9. Write a program for link tag used with external CSS.
Ans.
<html>
<head>
<title> link tag</title>
<head>
<link rel="stylesheet" type="text/css" href="theme.css">
</head>
<body>
<h1> I am formatted with a linked stylesheet</h1>
<p> Me tool</p>
</body>
</html>
Q10. Write a program for preserve <pre> tag.
Ans.
<html>
<head>
<title>Preserve tag</title>
</head>
<body>
<pre>
Hi
i am vinay
</pre>
</body>
</html>
Q11. Write a program for select tag.
Ans.
<html>
<head>
<title>Select tag</title>
</head>
<body>
<select>
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="opel">Opel</option>
<option value="audi">Audi</option>
</select>
</body>
</html>
Q12. Create a home page for website.
Ans.
<html>
<head>
<title> Webpage</title>
</head>
<body>
<h1>Hello world</h1>
<p> This is a test page</p>
</body>
</html>