Utkarsh IP project
Utkarsh IP project
Utkarsh Jain
CERTIFICATE
Utkarsh Jain
Has successfully completed his I.P
Project
Under the supervision and guidance of
MR.VIKRAM SINGH RAWAT
EXAMINER TEACHER
Index
CONTENT
Acknowledgement
Certificate
Introduction
20Python Programs
15SQL Queries
Bibliography
Introduction
The objective of this project is to demonstrate my understanding and
practical skills in Python programming and SQL by developing a
collection of 20 Python programs and 15 SQL queries. The project is
designed to cover various concepts from both programming languages
to ensure a strong foundation in both fields.
{15 SQL QUERIES}
Selected database table:
Query 1:
Display all records from the STUDENTS table
Query 2:
Find students with marks greater than 80;
SELECT Name, Marks FROM STUDENTS WHERE Marks > 80;
Query 3:
List the names of female students
Query 4:
Find the average marks of the class
Query 5:
Count the number of male students
Query 6:
Display students in descending order of marks
SELECT Name, Age FROM STUDENTS WHERE Age = (SELECT MIN(Age) FROM STUDENTS);
Query 8:
Display the total marks scored by male students
Query 9:
Find the maximum marks in the class
Query 10:
List students with marks between 70 and 90
SELECT Name, Marks FROM STUDENTS WHERE Marks BETWEEN 70 AND 90;
Query 11:
Find the total number of students
Query 12:
Group students by gender and find the average marks
Query 13:
Display the names of students whose names start with 'A'
Query 14:
Find students who failed (Marks < 70)
Books:
Kips IP Books class 12
Internet sources:
www.wikipedia.org
YouTube.com
toppr.com
byjus.com