0% found this document useful (0 votes)
44 views2 pages

Grade 11 IP Practical List 2024-2025

The document outlines the evaluation scheme for the Practical Examination in Informatics Practices at SNBP International School, detailing a total of 30 marks distributed across various practical tasks and a viva. It lists 22 specific programming tasks, primarily focused on Python and SQL, including calculations for averages, areas, and database operations. The writing format for submissions requires an aim and program description for each practical task.

Uploaded by

swanandpundu4
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)
44 views2 pages

Grade 11 IP Practical List 2024-2025

The document outlines the evaluation scheme for the Practical Examination in Informatics Practices at SNBP International School, detailing a total of 30 marks distributed across various practical tasks and a viva. It lists 22 specific programming tasks, primarily focused on Python and SQL, including calculations for averages, areas, and database operations. The writing format for submissions requires an aim and program description for each practical task.

Uploaded by

swanandpundu4
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

SNBP INTERNATIONAL SCHOOL & KIDZONE

MORWADI, PIMPRI, PUNE-18


CBSE AFFILIATION NO. 113052
Subject : Informatics Practices(065)
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

Evaluation scheme for Practical Examination:


Practical No. 1 Python – 4 marks
Practical No. 2 Python – 4 marks
Practical No. 3 SQL – 7 marks
Practical Journal– 10 marks
viva – 5 marks
Total - 30 Marks
Time - 1 Hr. 15 min

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

You might also like