Class 11 Practical File-1
Class 11 Practical File-1
School
Holambi Khurd (ID:1310472)
CLASS XI
INFORMATION TECHNOLOGY(IT-802)
PRACTICAL FILE
(2024-25)
3 To study various
Network Topologies
4 To create a professional
resume using Open
Office Writer
5 To create a marksheet
using Open Office Calc
6 To create a presentation
on Cyber Security using
Open Office Impress
7 MySQL database
creation and Query
Execution
Practical 4: To create a professional resume using Open
Office Writer.
Steps to create a professional resume in OpenOffice Writer:
For a professional look, use a simple, easy-to-read font like Arial, Calibri, or Times New
Roman.
Set the font size to 11 or 12 points for the body text.
3. Create a Header
At the top of the page, type your name in a larger font size (e.g., 14 or 16 points).
Below your name, add your contact information (phone number, email, LinkedIn, etc.).
You can make your name bold to stand out.
8. Optional Sections
9. Formatting Tips
Use consistent formatting for headings, bullet points, and text styles.
Make sure there’s enough white space between sections to keep the document easy to read.
Align text neatly (e.g., left-aligned or centered headings).
You can enter the headers in the first row, starting from cell A1, like this:
In the rows below, enter the data for each student. For example:
In column H (Percentage), you can calculate the percentage by dividing the total marks by the
total possible marks (assuming each subject is out of 100).
In column I (Grade), you can use an IF formula to assign grades based on the percentage.
To make the marksheet visually appealing, you can add conditional formatting for grades:
You can choose from various templates available or start with a blank presentation.
If you prefer a simple and professional look, selecting a blank presentation is a good idea.
Slide 2: Introduction
o Title: "What is Cybersecurity?"
o Bullet Points:
Definition: "Cybersecurity involves protecting systems, networks, and
programs from digital attacks."
Importance: "Cyber threats are evolving, and it's crucial to protect sensitive
data."
o You could use a simple graphic like a lock or a globe with a security shield.
Slide 7: Conclusion
o Title: "Key Takeaways"
o Bullet Points:
Cybersecurity is critical for personal and business safety.
Staying informed and proactive is key.
Regular security practices can prevent many threats.
o Add a final image or call to action, such as "Stay Secure Online."
OpenOffice Impress offers various transitions between slides and animations for text or
images.
You can add subtle transitions like "Fade" or "Slide" for a smooth flow.
Objective:
To learn how to create a database and execute queries such as SELECT, INSERT, UPDATE,
DELETE, and CREATE TABLE using MySQL.
Use the following command to create a database. For example, to create a database named school:
USE school;
2. Creating a Table
Now that you have a database, you can create a table in it. Let’s create a table named students to
store student information.
name VARCHAR(100),
age INT,
grade VARCHAR(10)
);
This command creates a table with four columns: student_id, name, age, and grade.
To insert data into the table, use the INSERT INTO statement.
INSERT INTO students (student_id, name, age, grade)
VALUES
To view the data in the students table, use the SELECT query.
UPDATE students
WHERE student_id = 1;
To delete a record from the table, use the DELETE query. For example, if you want to delete the
student with student_id = 2:
WHERE student_id = 2;
8. Additional Queries
Sorting data:
ORDER BY name;
Filtering data: