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

Class 12 Practical File Informatics Practices.pdf (1)

The document outlines a series of practical programming exercises for Class XII Informatics Practices, focusing on data manipulation using pandas and SQL. Each program addresses specific tasks such as creating data frames, filtering data, performing statistical analysis, and managing databases. The exercises aim to enhance students' skills in handling data through various programming techniques.

Uploaded by

cryptodrop170
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)
1 views

Class 12 Practical File Informatics Practices.pdf (1)

The document outlines a series of practical programming exercises for Class XII Informatics Practices, focusing on data manipulation using pandas and SQL. Each program addresses specific tasks such as creating data frames, filtering data, performing statistical analysis, and managing databases. The exercises aim to enhance students' skills in handling data through various programming techniques.

Uploaded by

cryptodrop170
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/ 22

www.python4csip.

com
Informatics Practices (Class XII PRACTICAL FILE)
PROGRAM #1
Create a pandas series from a dictionary of values and an ndarray.
www.python4csip.com

PROGRAM #2
Given a Series, print all the elements that are above the 75th percentile.
www.python4csip.com

PROGRAM #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
www.python4csip.com

PROGRAM #4
Create a data frame based on ecommerce data and generate descriptive
statistics (mean, median, mode, quartile, and variance).
www.python4csip.com

PROGRAM #5
Create a data frame for examination result and display row labels, column
labels data types of each column and the dimensions
www.python4csip.com

PROGRAM #6
Filter out rows based on different criteria such as duplicate rows.
www.python4csip.com

PROGRAM #7
Find the sum of each column, or find the column with the lowest mean.
www.python4csip.com

PROGRAM #8
Locate the 3 largest values in a data frame.
www.python4csip.com

PROGRAM #9
Subtract the mean of a row from each element of the row in a Data Frame.
www.python4csip.com

PROGRAM #10
Replace all negative values in a data frame with a 0.
www.python4csip.com

PROGRAM #11
Replace all missing values in a data frame with a 999.
www.python4csip.com

PROGRAM #12
Importing and exporting data between pandas and CSV file
www.python4csip.com

PROGRAM #13
Importing and exporting data between pandas and MySQL database.

Importing Data from MySQL to Data Frame.


www.python4csip.com

Exporting data from Data Frame to MYSQL.


www.python4csip.com
PROGRAM #14
Given the school result data, analyse the performance of the students on
different parameters, e.g subject wise or class wise.
www.python4csip.com

PROGRAM #15
For the Data frames created above, analyze and plot appropriate charts
with title and legend.
www.python4csip.com

PROGRAM #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
www.python4csip.com
www.python4csip.com

PROGRAM #17
Create a student table with the student id, name, and marks as attributes
where the student id is the primary key.

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

PROGRAM #19
Delete the details of a particular student in the above table.
www.python4csip.com

PROGRAM #20
Use the select command to get the details of the students with marks
more than 80.

PROGRAM #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
www.python4csip.com

PROGRAM #22
Create a foreign key in one of the two tables mentioned above

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

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

PROGRAM #25
Create a new table (name, date of birth) by joining two tables (student id,
name) and (student id, date of birth).

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

You might also like