0% found this document useful (0 votes)
29 views

Gr11 IP Lab Manual AY24-25

The document outlines practical programming tasks for Grade 11 Informatics Practices, focusing on Python programming and SQL commands. It includes a variety of exercises such as calculating averages, interest, and managing data in databases. The tasks aim to enhance students' skills in programming and data management using real-world applications.

Uploaded by

zoyenkakc
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)
29 views

Gr11 IP Lab Manual AY24-25

The document outlines practical programming tasks for Grade 11 Informatics Practices, focusing on Python programming and SQL commands. It includes a variety of exercises such as calculating averages, interest, and managing data in databases. The tasks aim to enhance students' skills in programming and data management using real-world applications.

Uploaded by

zoyenkakc
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/ 2

INFORMATICS PRACTICES (065)

PRACTICAL-PROGRAMS
AY 2024-2025
GRADE 11

Programming in Python
1. To find average and grade for given marks.
2. To find sale price of an item with given cost and discount (%).
3. To calculate perimeter/circumference and area of shapes such as
triangle, rectangle, square and circle.
4. To calculate Simple and Compound interest.
5. To calculate profit-loss for given Cost and Sell Price.
6. To calculate EMI for Amount, Period and Interest.
7. To calculate tax - GST / Income Tax.
8. To find the largest and smallest numbers in a list.
9. To find the third largest/smallest number in a list.
10. To find the sum of squares of the first 100 natural numbers.
11. To print the first ‘n’ multiples of given number.
12. To count the number of vowels in user entered string.
13. To print the words starting with a alphabet in a user entered string.
14. To print number of occurrences of a given alphabet in each string.
15. Create a dictionary to store names of states and their capitals.
16. Create a dictionary of students to store names and marks obtained in 5 subjects.
17. To print the highest and lowest values in the dictionary.

Data Management: SQL Commands


18. To create a database
19. To create student table with the Student _id, Class, Section, Gender,
Name, DOB, and Marks as attributes where the student id is the primary key.
20. To insert the details of at least 10 students in the above table.
21. To display the entire content of table.
22. To display Student _id, Name and Marks of those students who are
scoring marks more than 50.
23. To display Student_id, Name, DOB of those students who are born between
‘2005- 01-01’ and ‘2005-12-31’.
24. To find the average marks from the student table.
25. To find the numbers of students, who are from ‘section A’.
26. To display Student_id, Gender, Name, DOB, Marks in descending order.
27. To display the unique section available in the table.
28. To display the names of students with beginning with ‘A’.
29. To display the names of students having exactly five letter names.
30. To display the list of students in the alphabetical order of their names.
31. To display Name, Section of students whose marks is between 40 to 50.
Order the query in descending order of name.

You might also like