0% found this document useful (0 votes)
36 views34 pages

Practicle Word File

The document is a practical file for Grade XI Sec C student Abhinav Rao, detailing completed assignments in Informatics Practices for the academic year 2024-2025. It includes a certificate of completion, an index of Python programs and SQL commands, and the respective dates and signatures for each task. The practical file serves as a record of the student's work in accordance with the Central Board of Secondary Education (CBSE) curriculum.

Uploaded by

abhi742158
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
36 views34 pages

Practicle Word File

The document is a practical file for Grade XI Sec C student Abhinav Rao, detailing completed assignments in Informatics Practices for the academic year 2024-2025. It includes a certificate of completion, an index of Python programs and SQL commands, and the respective dates and signatures for each task. The practical file serves as a record of the student's work in accordance with the Central Board of Secondary Education (CBSE) curriculum.

Uploaded by

abhi742158
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 34

GRADE XI Sec:C

INFORMATION PRACTICES
(065)

PRACTICAL FILE
2024-2025

NAME:Abhinav Rao
ROLL NO:03
CERTIFICATE

This is to certify that Informatics Practices


(065) Practical Record File has been
successfully completed by Abhianv Rao of
Grade XI (C) in the partial fulfillment of
curriculum of Central Board of Secondary
Education(CBSE) leading to Annual
Examination of the year 2024-2025.

Teacher-in-charge
(Mrs. Maitri Dutta)

Headmistress (Secondary) Principal-


Director
(Mrs. Amrita Gangwal) (Mrs. Meera Nair)
(External Examiner
Index
Python programs
S.NO. TOPIC DATE PAGE SIGNATURE
NO.
1. To find average and grade for given marks. 26.6.2024 5
2. To find the sale price of an item with a given cost 30.6.2024 6
and discount (%).
3. To calculate perimeter/circumference and area of 9.7.2024 8
shapes such as triangle, rectangle, square and
circle.
4. To calculate Simple and Compound interest. 14 .7.2024 9
5. To calculate profit-loss for given Cost and Sell 24.7.2024 11
Price.
6. To calculate EMI for Amount, Period and Interest. 26.7.2024 12
7. To calculate tax - GST. 3.8.2024 13
8. To find the largest and smallest numbers in a list. 8.8.2024 14
9. To find the third largest/smallest number in a list. 12.8.2024 15
10.. To find the sum of squares of the first 100 natural 16.8.2024 16
numbers.
11. To print the first ‘n’ multiples of a given number. 21.8.2024 17
12. Write a python program to count the number of 26.8.2024 18
vowels in a user entered string.
13. Write a python program to print the words starting 1.9.2024 19
with a particular alphabet in a user entered string.
14. Write a python program to print the number of 5.9.2024 20
occurrences of a given alphabet in each string.
15.. Create a dictionary to store names of states and 10.10.2024 21
their capitals.
16. Create a dictionary of students to store names and 12.10.2024 22
marks obtained in 5 subjects.
17.. To print the highest and lowest values in the 15.10.2024 23
dictionary.
18. To find the minimum and maximum element from 5.11.2024 24
a list of numbers along with its index in the list
input from the user.
19. To calculate the mean of a given list of numbers. 11.11.2024 25
20. To search for an element in a list of numbers input 14.11.2024 26
from a user.
SQL Commands
S.NO. TOPIC DATE PAGE SIGNATURE
NO.
1. To create a database name class 11 21.11.2024 27
2. To open database class 11 21.11.2024 27
3. To create a student table with the 21.11.2024 27
student id, class, section, gender,
name, dob, and marks where the
student id is the primary key.
4. To view the structure of the table 21.11.2024 28
5. To insert the details of at least 10 25.11.2024 29
students in the above student table.
6.. To display the entire content of the 26.11.2024 29
table.
7. Delete record of student who secured 26.11.2024 30
less than 65 marks.
8. Increase marks by 5% for those who 26.11.2024 30
have student ID more than 1105
9. Display the details of female 26.11.2024 31
students.
10. To display Rno, Name and Marks of 26.11.2024 31
those students who are scoring marks
more than 50.
11. To find the average of marks from the 26.11.2024 32
student table.
12. To find the number of students, who 26.11.2024 32
are from section ‘A’.
13. Add a new column email in the 26.11.2024 32
student table
14. Add email ID of each student in the 27.11.2024 33
created email column
15. To display the information of all 27.11.2024 33
students, name contains ’sh’
16. To display the information all the 27.11.2024 33
students, whose name starts with ‘sh’
17. To display student ID, Name, DOB 27.11.2024 33
of those students who are born in
2005.
18. To display student ID, Name, DOB, 27.11.2024 33
Marks, Email of those male students
in ascending order of their marks.
19. To display student ID, Gender, 27.11.2024 34
Name, DOB, Marks, Email in
descending order of their marks.
20. To display the unique section 27.11.2024 34
available in the table.
PROGRAM 1
To find average and grade for given marks.

Output
PROGRAM 2
To find the sale price of an item with a given cost and discount (%).

output
PROGRAM3

To calculate perimeter/circumference and area of shapes such as triangle, rectangle, square and
circle

Output
PROGRAM 4
To calculate Simple and Compound interest.

Output
PROGRAM 5
To calculate profit-loss for given Cost and Sell Price

Output
PROGRAM 6
To calculate EMI for Amount, Period and Interest.

Output
Progarm 7
To calculate tax - GST

Output
PROGRAM 8
To find the largest and smallest numbers in a list.

0utput
Progarm 9

To find the third largest/smallest number in a list.

Output
Program 10
To find the sum of squares of the first 100 natural numbers.

Output
Program 11
To print the first ‘n’ multiples of a given number.

Output
Program 12
Write a python program to count the number of vowels in a user entered string.

Output
Program 13
Write a python program to print the words starting with a particular alphabet in a user entered
string.
Output

Program 14
Write a python program to print the number of occurrences of a given alphabet in each string
OUTPUT

Program 15
. Create a dictionary to store names of states and their capitals.

Output
Program16
Create a dictionary of students to store names and marks obtained in 5 subjects.

OUTPUT
Program17
To print the highest and lowest values in the dictionary.
Output

Program18
To find the minimum and maximum element from a list of numbers along with its index in the list
Output

Program19
To calculate the mean of a given list of numbers input from the user
Output

Program 20
To search for an element in a list of numbers input from a user.
Output

Q1

To create a database name class 11


Q2

To open database class 11

Q3

To create a student table with the student id, class, section, gender, name, dob, and marks where
the student id is the primary key.

Q4
To view the structure of the table

Q5

To insert the details of at least 10 students in the above student table.

Q6
To display the entire content of the table.

Q7

Delete record of student who secured less than 65 marks.


Q8

Increase marks by 5% for those who have studentID more than 1105

Q9

Display the details of female students.


Q10

To display the Name and Marks of those students who are scoring marks more than 50

Q11

To find the average of marks from the student table.

Q12

To find the number of students, who are from section ‘A’.


Q13

Add a new column email in the student table

Q14

Add email ID of each student in the created email column


Q15

To display the information of all students, name contains ’sh’

Q16

To display the information all the students, whose name starts with ‘sh’

Q17

To display studentID, Name, DOB of those students who are born in 2005.

Q18

To display studentID, Name, DOB, Marks, Email of those male students in ascending order of their
marks.
Q19

To display studentID, Gender, Name, DOB, Marks, Email in descending order of their marks.

Q20

To display the unique section available in the table.


Record File
Name of Student: Abhinav Rao
Grade: XI - Sec - C
Subject: Information Practices
Year: 2024-25
Subject Teacher: Mrs. Maitri Dutta

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy