Grade 11 IP Practical List 2024-2025
Grade 11 IP Practical List 2024-2025
Practical List:
#Program no 1
Program to find average and grade for given marks
#Program no 2
Program to calculate sale price when discount percent and cost is given
#Program no 3
To calculate perimeter/circumference and area of shapes such as triangle, rectangle,
square and circle
#Program no 4
Program to calculate simple and compound interest
#Practical no 5
Program to calculate profit /loss for given cost and sell price
#Practical no 6
Program to find the largest and smallest numbers in a list
#Practical no 7
Program to find the third largest /smallest number from a list.
#Practical no 8
Program to print sum of squares of first 100 natural numbers
#Program no 9
Program to print first n multiples of given number
# Practical no 10
Python program to count number of vowels in a user defined string
#Practical no 11
Python Program to Count Occurrence of a Character in a String
#Practical no:12
Program to create a dictionary to store names of states and their capital
#practical no 13
Program to create a dictionary of students to store names and marks obtained in 5
subjects.
#Program no 14
To create a student table with the student id, class, section, gender, name, dob, and
marks as attributes where the student id is the primary key.
Create table student ( studentid integer not null primary key,
Class integer not null,
Section char(1),
Gender char(1) not null,
Name varchar(30) not null,
Dob date ,
Marks float
);
#Program no 15
To insert the details of at least 5 students in the above table.
#Program no 16
To delete the details of a particular student in the above table.
#Program no 17
To increase marks by 5% for those students who have Rno more than 2.
#Program no 18
To display the entire content of the table.
#Program no 19
To display Rno, Name and Marks of those students who are scoring marks more than
40.
#Program no 20
To find the average of marks from the student table
#Program no 21
To find the number of students, who are from section ‘A’.
#Program no 22
To add a new column email in the above table with appropriate data type.
Writing Format:
Aim and Program