You are on page 1of 28

केंद्रीय विद्यालय अहमदाबाद कैं ट

हनुमान कैं प, अहमदाबाद -३८०००३


KENDRIYA VIDYALAYA AHMEDABAD CANTT,
HANUMAN CAMP, AHMEDABAD 380003

PRACTICAL FILE
INFORMATION PRACTICES
CLASS XII

Sonia Choudhary
PGT CS
KV Ahmedabad Cantt

1|Page
SYLLABUS
IP PRACTICAL
CLASS XII

2|Page
Suggested Practical List .
1 Data Handling
1. Create a panda’s series from a dictionary of values and a ndarray
2. Given a Series, print all the elements that are above the 75th percentile.
3. Create a Data Frame quarterly sales where each row contains the item
category, item name, and expenditure. Group the rows by the category and print
the total expenditure per category.
4. Create a data frame for examination result and display row labels, column
labels data types of each column and the dimensions
5. Filter out rows based on different criteria such as duplicate rows.
6. Importing and exporting data between pandas and CSV file
2 Visualization
1. Given the school result data, analyses the performance of the students on
different parameters, e.g subject wise or class wise.
2. For the Data frames created above, analyze, and plot appropriate charts with
title and legend.
3. Take data of your interest from an open source (e.g. data.gov.in), aggregate
and summarize it. Then plot it using different plotting functions of the Matplotlib
library.
3 Data Management
1. Create a student table with the student id, name, and marks as attributes where
the student id is the primary key.
2. Insert the details of a new student in the above table.
3. Delete the details of a student in the above table.
4. Use the select command to get the details of the students with marks more than
80.
5. Find the min, max, sum, and average of the marks in a student marks table.
6. Find the total number of customers from each country in the table (customer
ID, customer Name, country) using group by. 7. Write a SQL query to order the
(student ID, marks) table in descending order of the marks.
3|Page
STUDENT PROFILE
XII C
Informatics Practices

S Name of Contract
No Class Student Fathers Name Number

ADARSH SATENDRA KUMAR


1 XII-C PANDEY PANDEY 9426379606

2 XII-C AKANSHA GHANSHYAM KOGE 8150076619


BHAVIKA HARESHKUMAR
HARESHKUMAR KEWALRAM
3 XII-C MAKHIJA MAKHIJA 8128588548

4 XII-C DIP ROY DEBASHISH ROY 8871690895


FENI
JAGDISHBHAI JAGDISH BHAI
5 XII-C SOLGAMA SOLGAMA 9909016032

6 XII-C GAURAV G NAIR GURUVAYURAPPAN 7600852214


HARISHIKESH
7 XII-C MODI ASHOK MODI 9328880999
8 XII-C ISHITA SINGLA AMIT SINGLA 7986366261
9 XII-C JAYDEEP SINGH P.A.S.R. BHAI 9737587840
10 XII-C KADRI RUSHAN KADRI NAIM 9714399011
RAHUL
11 XII-C MANOHARAN MANOHARAN.P 9048627524
SHAMMI
12 XII-C KUMARI J OJHA JAY PRAKASH OJHA 8000708000
SUNNY SINGH CHAUHAN SARVAN
13 XII-C CHAUHAN SINGH 8936078212

4|Page
STUDENT PROFILE
XII D
Informatics Practices

S Contract
No Class Name of Student Fathers Name Number
PATEL YASH
1 XII-D KAMLESHBHAI KAMLESH BHAI 9879184274

ANNWESA MEGHNAD
2 XII-D MUKHOPADHYAY MUKHOPADHYAY 9920518749
3 XII-D SOURAV BHOSLE SUBHASH 9998076143
NISHANT DILIP KUMAR
4 XII-D CHOUDHARY CHOUDHARY 9501098305
SANTOSH KUMAR
5 XII-D SUBHAM DUTTA DUTTA 9893205041
MD NIJAMUL MD SHERFUL
6 XII-D HEQUE HEQUE 9520205712
7 XII-D ANUSKA YADAV UMASHANKAR 9519680898
SAHIL VIRENDRA
8 XII-D CHATURVEDI CHATURVEDI 9518878233

5|Page
#1 Create a pandas series from a dictionary of values and an ndarray.

6|Page
#2. Given a Series, print all the elements that are above the 75th percentile.

7|Page
#3 Create a Data Frame quarterly sales where each row contains the item
category, item name, and expenditure. Group the rows by the category, and

8|Page
#4. Create a data frame based on ecommerce data and generate descriptive
statistics (mean, median, mode, quartile, and variance).

9|Page
#5. Create a data frame for examination result and display row labels, column
labels data types of each column and the dimensions

10 | P a g e
#6. Filter out rows based on different criteria such as duplicate rows.

11 | P a g e
#7. Find the sum of each column, or find the column with the lowest mean.

12 | P a g e
#8. Locate the 3 largest values in a data frame.

13 | P a g e
#9. Subtract the mean of a row from each element of the row in a Data Frame.

14 | P a g e
#10. Replace all negative values in a data frame with a 0.

15 | P a g e
#11. Replace all missing values in a data frame with a 999.

16 | P a g e
#12. Importing and exporting data between pandas and CSV file

17 | P a g e
#13. Importing and exporting data between pandas and MySQL database.

Importing Data from MySQL to Data Frame.

18 | P a g e
Exporting data from Data Frame to MYSQL.

19 | P a g e
#14. Given the school result data, analyse the performance of the students on
different parameters, e.g subject wise or class wise.

20 | P a g e
#15. For the Data frames created above, analyze and plot appropriate charts
with title and legend.

21 | P a g e
#16. Take data of your interest from an open source (e.g. data.gov.in), aggregate
and summarize it. Then plot it using different plotting functions of the Matplotlib

22 | P a g e
23 | P a g e
#17. Create a student table with the student id, name, and marks as attributes
where the student id is the primary key.

#18. Insert the details of a new student in the above table.

#19. Delete the details of a particular student in the above table.

24 | P a g e
#20. Use the select command to get the details of the students with marks
more than 80.

#21. Create a new table (order ID, customer Name, and order Date) by joining
two tables (order ID, customer ID, and order Date) and (customer ID, customer

25 | P a g e
#22. Create a foreign key in one of the two tables mentioned above

#23. Find the min, max, sum, and average of the marks in a student marks table.

#24. Find the total number of customers from each country in the table
(customer ID, customer Name, country) using group by.

26 | P a g e
#25. Create a new table (name, date of birth) by joining two tables (student id,
name) and (student id, date of birth).

#26. Write a SQL query to order the (student ID, marks) table in descending order
of the marks.

27 | P a g e
Thank You

28 | P a g e

You might also like