Practicals
Practicals
STEPS:
1. Insert USB or DVD of MS Office 2010. MS Office window will appear.
Double click on .exe file
2. Enter 25 characters product key and then click “continue”.
3. Read software license terms and click on I accept the terms of this
agreement then click continue.
4. Now two options will display i.e., install now and customize
5. Click on install now button
6. MS Office will now be displaying installing on your computer.
PRACTICAL NO 3
Installation of AVG Antivirus Software
Steps of Installation
1. Download AVG Antivirus setup from AVG website homepage by
clicking the free download button.
2. Run the downloaded file to start installation process.
3. The installation wizard will open.
4. It will prompt you to select the language and region.
Choose your preferred options and click “Next”.
5. Read the license agreement then click “Next”.
6. The installer will ask you to select the folder where you want to
install AVG Antivirus. Select the folder and click "Next" to
continue.
7. Click the “install” button to start the installation process.
8. Once the installation is complete, you may be prompted to
activate the software.
9. Enter the License key. AVG Antivirus is now activated.
PRACTICAL NO 4
To write a leave application to class teacher.
Steps:
1. Open Microsoft Word:
2. Select page size A4 and orientation portrait.
3. Adjust the margins if necessary.
4. Type the teacher's name, school name, and school address.
5. Skip a line and write the subject of your application, e.g., "Leave
Application."
6. Start your letter with a respectful salutation, such as "Respected
[Teacher's Name],"
7. Type the body of the letter. Briefly explain the reason for your leave.
8. Type your name, class and section.
9. Skip a line and then type the date.
10.Save your document to your preferred location on your computer.
11.If a physical copy is required, print application on blank page.
The Principal,
DHACSS SKBZ CAMPUS,
Karachi
Respected Sir,
I hope this letter finds you in good health. I am writing to inform you
that I am unable to attend classes from 1-8-2024 to 5-8-2024 due to
illness.
Sincerely,
Suhaib
IX-C
01-08-2024
PRACTICAL NO 5
Insert automatic table of content with two heading
STEPS:
1. Open Microsoft Word.
2. Create a new blank document.
3. Go to the "Insert" tab.
4. Click on "Shapes" to add a rectangle for the card.
5. Resize and format the rectangle for your card size.
6. Go to "Insert" again, click "Text Box," and add a birthday message.
7. Format the text, change font, color, and size as desired.
8. Insert clip art or images by going to "Insert" > "Pictures."
9. Arrange and resize images as needed.
10.Add any additional decorations or personal touches.
11.Go to "File" and click "Save" to save your birthday card.
12.Print the card or save it as a digital file to share.
PRACTICAL NO 7
To create a marksheet of ten students
<!DOCTYPE html>
<html>
<head>
<title>GRADE IX C</title>
</head>
<body>
<h1>Hello, World!</h1>
<p>We are computer science students. Our class teacher is Ms Ateeqa. <p>
</body>
</html>
PRACTICAL NO 10
To create a table in HTML
STEPS
1. Open a Text Editor:
Open a simple text editor like Notepad.
2. Write HTML Structure:
Begin your HTML document with <!DOCTYPE html> to define the
document type. Add the opening and closing <html> tags.
3. Head Section:
Include the <head> section where you can set the title of your web page
using <title> tags.
4. Body Section:
Add the <body> section to contain the content of your web page.
5. Insert Table Tags:
Use the <table> element to create a table.
Inside <table>, use <tr> for each row and <td> for each cell.
6. Define Rows and Cells:
Within each <tr>, use multiple <td> tags for each cell in that row.
7. Save the File:
Save your file with a .html extension.
HTML Code
<!DOCTYPE html>
<html>
<head>
<title>Table</title>
</head>
<body>
<h2>Student Grades</h2>
<table border="1">
<tr>
<td>Student</td>
<td>Computer</td>
<td>Physics</td>
<td>Chemistry</td>
</tr>
<tr>
<td>Ali</td>
<td>85</td>
<td>90</td>
<td>88</td>
</tr>
<tr>
<td>Tayyab</td>
<td>92</td>
<td>88</td>
<td>95</td>
</tr>
<tr>
<td>imran</td>
<td>80</td>
<td>93</td>
<td>84</td>
</tr>
<tr>
<td>Waleed</td>
<td>91</td>
<td>82</td>
<td>93</td>
</tr>
<tr>
<td>Sharjeel</td>
<td>82</td>
<td>94</td>
<td>85</td>
</tr>
<tr>
<td>Zohaib</td>
<td>91</td>
<td>81</td>
<td>91</td>
</tr>
<tr>
<td>Amjid</td>
<td>82</td>
<td>92</td>
<td>82</td>
</tr>
<tr>
<td>Rameez</td>
<td>93</td>
<td>84</td>
<td>95</td>
</tr>
<tr>
<td>Ammar</td>
<td>85</td>
<td>96</td>
<td>87</td>
</tr>
<tr>
<td>Aliyan</td>
<td>91</td>
<td>84</td>
<td>93</td>
</tr>
<tr>
<td>Akhter</td>
<td>80</td>
<td>97</td>
<td>81</td>
</tr>
<tr>
<td>Farhan</td>
<td>92</td>
<td>83</td>
<td>94</td>
</tr>
<tr>
<td>Majid</td>
<td>85</td>
<td>96</td>
<td>86</td>
</tr>
<tr>
<td>Tayyab</td>
<td>98</td>
<td>89</td>
<td>98</td>
</tr>
</table>
</body>
</html>
Create table