Gurugram Global Heights School
Practical file
Of
Informatics Practices (065)
In the fulfillment of requirement of
Central Board of Secondary
Education (CBSE)
Submitted to Submitted by
Ms. Nidhi Bharat Singh
Agarwal Bhati
PGT (CS/IT) Class-XIth
[Link]- 2
Certificate
This is to certify that the content of this project entitled,
“Practical file of Artificial Intelligence” by me is the bona
fide work of her submitted to Gurugram Global Heights
School, Sector 102 for consideration in the partial
fulfilment of CBSE’s examination 2024-25. It has been
carried out under my direct supervision and guidance.
This report or similar report on this topic has not been
submitted for any other examination and does not from a
part of any other course undergone by the candidate.
Name [Link] Signature of Student
Bharat Singh
Bhati
……………………………………
……………………………………
(Signature
(Signature of Teacher)of Principal)
Name-
Name- Ms. Nidhi Ms. Akansha Tandon
Agarwal
Designation- PGT (CS/IT)
Acknowledg
ment
I undertook this project as a part of my 11th
Informatics Practices course (065). I have tried to
apply my best of knowledge and experience,
gained during the study and class work experience.
In the accomplishment of this project successfully,
many people have bestowed upon me their
blessings and their heart pledged support. So I
would like to express my gratitude to all the people
who have been concerned with this project. I would
like to extend my sincere thanks to my teacher Ms.
Nidhi Agarwal for giving her valuable time and
guidance. I am thankful to our Principal ma'am Ms.
Akansha Tandon for giving me the golden
opportunity to work on this project which indeed
helped to broaden my knowledge about application
of concepts in real life. I would also like to thank my
parents and friends who contributed in the
completion of this project.
Index
[Link] Practical name [Link]
1. WAP in Python which accepts 2 integer numbers 7
and prints their sum, difference, product and
quotient.
2. WAP in Python which accepts marks of 5 8
subjects out of 100 and calculates aggregate and
percentage of the student.
3. WAP in python which accepts cost price and sale 9
price from the user and displays profit or loss.
4. WAP in Python which accepts the radius of the 10
circle and displays area and circumference.
5. WAP in Python which obtains length and breadth 11
of a rectangle and displays area and perimeter.
6. WAP in Python which accepts temperature in 12
degree Celsius and returns the temperature in
Fahrenheit.
7. WAP in Python which accepts weight in 13
kilograms and height in meters and calculate
BMI.
8. WAP in Python to swap two numbers:- 14
(i) without using third variable
(ii) using third variable
9. WAP in Python which obtains a distance in 15
meters and converts and displays it in kilometers
and miles.
10. WAP in Python which can solve a quadratic 16
equation:
11 WAP in Python to print numbers from 1 to 5: 17
12 WAP in Python print even numbers from 1 to 10: 18
19
13 WAP in Python print odd numbers from 1 to 10:
14 WAP in Python print counting down from 5 to 1: 20
15 WAP in Python print sum of the first 5 natural 21
numbers:
16 WAP in Python print table of 5: 22
17 WAP in Python to find area of sphere and 23-24
cuboid:
18 WAP in Python to calculate BMI of a person: 25
19 WAP in Python to check the year is leap year or 26
not:
20 WAP in Python to check the grade of students: 27
21 WAP in Python to print the sum of all, odd and 28-29
even natural number up to the limit:
22 WAP in Python to print whether the user is 30
eligible to get driving license or not:
23 WAP in python to print elements of a list in 31
separate lines along with element’s both index:
24 WAP in python to make a true copy of list: 32
25 WAP in python to delete the elements in list with 33-34
giving options:
26 WAP in python to calculate the mean of a given 35
numbers of list:
27 WAP in python to count the frequency of a given 36
element:
28 WAP in python to search for an element in given 37
list:
38
29 WAP in python to check if a dictionary is empty
or non-empty:
30 WAP in python to make 3rd dictionary from 2 39
dictionaries entered by user and add the values
of same keys:
31 WAP in python to create a dictionary to share 40
names of states and their capitals:
32 WAP in python to create a dictionary containing 41
names of competition winner students as keys
and number of their wins as values:
Practical -1
WAP in Python which accepts 2 integer
numbers and prints their sum, difference,
product and quotient.
Code
Output
Practical – 2
WAP in Python which accepts marks of 5
subjects out of 100 and calculates aggregate
and percentage of the student.
Code
Output
Practical – 3
WAP in python which accepts cost price and
sale price from the user and displays profit or
loss.
Code
Output
Practical – 4
WAP in Python which accepts the radius of the
circle and displays area and circumference.
Code
Output
Practical – 5
WAP in Python which obtains length and
breadth of a rectangle and displays area and
perimeter.
Code
Output
Practical – 6
WAP in Python which accepts temperature in
degree Celsius and returns the temperature in
Fahrenheit.
Code
Output
Practical – 7
WAP in Python which accepts weight in
kilograms and height in meters and calculate
BMI.
Code
Output
Practical – 8
WAP in Python to swap two numbers:-
(i) without using third variable
(ii) using third variable
Code
Output
Practical – 9
WAP in Python which obtains a distance in
meters and converts and displays it in
kilometers and miles.
Code
Output
Practical – 10
WAP in Python which can solve a quadratic
equation:
Code
Output
Practical – 11
WAP in Python to print numbers from 1 to 5:
Code
Output
Practical – 12
WAP in Python print even numbers from 1 to
10:
Code
Output
Practical – 13
WAP in Python print odd numbers from 1 to 10:
Code
Output
Practical – 14
WAP in Python print counting down from 5 to 1:
Code
Output
Practical – 15
WAP in Python print sum of the first 5 natural
numbers:
Code
Output
Practical – 16
WAP in Python print table of 5:
Code
Output
Practical – 17
WAP in Python to find area of sphere and
cuboid:
Code
Output
Practical – 18
WAP in Python to calculate BMI of a person:
Code
Output
Practical – 19
WAP in Python to check the year is leap year or
not:
Code
Output
Practical – 20
WAP in Python to check the grade of students:
Code
Output
Practical – 21
WAP in Python to print the sum of all, odd and
even natural number up to the limit:
Code
Output
Practical – 22
WAP in Python to print whether the user is
eligible to get driving license or not:
Code
Output
Practical – 23
WAP in python to print elements of a list in
separate lines along with element’s both index:
Code
Output
Practical – 24
WAP in python to make a true copy of list:
Code
Output
Practical – 25
WAP in python to delete the elements in list
with giving options
Code
Output
Practical – 26
WAP in python to calculate the mean of a given numbers of list:
Code
Output
Practical – 27
WAP in python to count the frequency of a given element:
Code
Output
Practical – 28
WAP in python to search for an element in given list:
Code
Output
Practical – 29
WAP in python to check if a dictionary is empty or non-empty:
Code
Output
Practical – 30
WAP in python to make 3rd dictionary from 2 dictionaries entered by user
and add the values of same keys:
Code
Output
Practical – 31
WAP in python to create a dictionary to share names of states and their
capitals:
Code
Output
Practical – 32
WAP in python to create a dictionary containing names of competition
winner students as keys and number of their wins as values:
Code
Output