Class 12 IP Practical File 2022-23 | Download PDF

Download pdf of Class 12 IP Practical File 2022-23 contains 35 practical programs including Pandas Programs, Matplotlib Programs, SQL Queries. This IP Practical File is prepared as per CBSE suggested syllabus.

Distribution of Marks

Download Practical File IP Class 12 2022-23

Data Handling Using Pandas Practicals

Python Series Programs (10 Practicals)

Practical 1: Create a Series object using the python sequence with 5 elements:

Solution:

Output

Practical 2: Create a Series object โ€˜vowelโ€™ to store all vowels individually. Its index should be 1,2,3,4 & 5.:

Solution:

Output

Practical 3: Create s Series object using ndarray that has 5 elements in the range 50 and 100:

Solution:

Output

Practical 4: Create a Series object using dictionary to that stores the no of students in each section of class 12th of your school:

Solution

Output

Practical 5: Total no of students to be admitted is 350 in Yojna School every year. Write code to create a Series object โ€˜Schoolโ€™ that stores these total no of students for the year 2015 to 2022:

Solution

Output

Practical 6: Create a Series object โ€˜Itemโ€™ that stores rate of each product as given below:
Soap   54
Salt     20
Sugar 39
Write code to modify rate of soap to 44 and sugar to 42. print the changed rate:

Solution:

Output

Practical 7: No of students in class 11 and class 12 in three streams (science, commerce and humanities) are stored in 2 series object class 11 and class 12. write code to find total no of students in class 11 & class 12 stream wise:

Solution:

Output

Practical 8: Create a Series object โ€˜populationโ€™ to store population of 5 different metro cities and display the population that are more than 300000:

Solution:

Output

Practical 9: Create a series โ€˜tempโ€™ that stores temperature of seven days in it. Its index should be โ€˜Sundayโ€™, โ€˜Mondayโ€™ โ€ฆ.

Write script to

  1. Display temp of first 3 days.
  2. Display temp of last 3 days.
  3. Display all temp in reverse order like Saturday, Friday,โ€ฆ.
  4. Display temp from Tuesday to Friday.
  5. Display square of all temperature.:

Solution:

Output

Practical 10: Create a Series object โ€˜employeeโ€™ that stores salary of 7 employees. Write script to print

  1. Total no of elements
  2. Series is empty or not
  3. Series consist NaN value or not
  4. Count Non-NA elements
  5. Axis labels:

Solution:

Output

Python DataFrame Programs (10 Practicals)

Practical1: Create the following dataframe โ€˜Sportโ€™ containing sport wise marks for five students. Use 2D dictionary to create dataframe.

Solution:

Output:

Practical 2: Create a dataframe from list containing dictionaries of most economical bike with its name and rate of three companies. Company name should be the row labels.

Output:

Practical 3: Consider two series object staff and salaries that stores the number of people in various office branches and salaries distributed in these branches respectively.
Write a program to create another Series object that stores average salary per branch and then create a dataframe object from these Series object.
After creating dataframe rename all row labels with Branch name.

Solution:

Output:

Practical 4: Create the following dataframe โ€˜salesโ€™ containing year wise sales figure for five sales persons in INR. Use the year as column labels, and sales person names as row labels.

Write program to do the followings

  1. Display row labels of โ€˜salesโ€™
  2. Display column label of โ€˜salesโ€™
  3. Display last two rows of the โ€˜salesโ€™
  4. Display first two rows of the โ€˜salesโ€™.

Solution:

Output:

Practical 5: Create a dataframe โ€˜sales2โ€™ using dictionary as given below and write a program to append โ€˜sales2โ€™ to the dataframe โ€˜salesโ€™ created in previous practical 4.

Solution:

Output:

Practical 6: Create a dataframe โ€˜clothโ€™ as given below and write program to do followings:

  • Check โ€˜clothโ€™ is empty or not
  • Change โ€˜clothโ€™ such that it becomes its transpose
  • Display no of rows and columns of โ€˜clothโ€™
  • Count and display Non NA values for each column
  • Count and display Non NA values for each row

Solution:

Output:

Practical 7: For given dataframe โ€˜clothโ€™ given in Practical 6, Write program to do followings:

  • Change the name of โ€˜Trouserโ€™ to โ€˜pantโ€™ and Jeans to โ€˜Denimโ€™
  • Increase price of all cloth by 10%
  • Rename all the indexes to [C001, C002, C003, C004, C005]
  • Delete the data of C3 (C003) from the โ€˜clothโ€™
  • Delete size from โ€˜clothโ€™

Solution:

Output:

Practical8: Create a dataframe โ€˜aidโ€™ as given below and write program to do followings:

  1. Display the books and shoes only
  2. Display toys only
  3. Display quantity in MP and CG for toys and books.
  4. Display quantity of books in AP

Solution:

Output:

Practical 9: For given dataframe โ€˜aidโ€™ in practical 7, write program to write the values of โ€˜aidโ€™ to a comma separated file โ€˜aidfigures.csvโ€™ on the disk. Do not write the row labels and column labels.

Output:

Output:

Practical 10: Read the data in the file โ€˜aidfigure.csvโ€™ into a dataframe โ€˜aidretrievedโ€™ and display it. Now update the row labels and column labels of โ€˜aidretrievedโ€™ to be the same as that of โ€˜aidโ€™ of practical 9.

Solution:

Output:

Python Matplotlib PyPlot Programs (5 Practicals)

Problem statement: Collect and store total medals won by  10 countries in Olympic games and represent it in form of bar chart with title to compare an analyze data.

Solution:

Output:

Practical 2: Techtipnow Automobiles is authorized dealer of different Bikes companies. They record the entire sale of bikes month wise as give below:

To get proper analysis of sale performance create multiple line chart on a common plot where all bike sale data are plotted. Display appropriate x and y axis labels, legend and chart title.

Solution:

Output:

Practical 3: Given the school result data, analyses the performance of the student on different parameters, e.g. subject wise or class wise. Create a dataframe for the above, plot appropriate chart with title and legend.

Solution:

Output:

Practical: The following seat bookings are the daily records of a month December from PVR cinemas:
124,124,135,156,128,189,200,150,158, 150,200,124,143,142,130,130, 170,189,200,130, 142,167,180,143,143, 135,156,150,200,189,189,142
Construct a histogram from above data with 10 bin.

Solution:

Output:

Practical 5: Take data of your interest from an open source (e.g. data.gove.in), aggregate and summarize it. Then plot it using different plotting functions of the Matplotlib library.

Output:

Database Query using SQL Practicals

SQL Queries (10 Programs)

Practical 1: Create a student table with the student id, name, and marks as attributes where the student id is the primary key.

Solution:

Practical 2: In the table โ€˜studentโ€™ created in practical 26, insert the details of new students.

Solution:

Practical 3: Write SQL command to get the details of the students with marks more than 80.

Solution:

Practical 4: Write SQL command to Find the min, max, sum, and average of the marks in a student marks table.

Solution:

Practical 5: Delete the details of a student table created in Practical 26.

Solution:

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

Solution:

Practical 7: Write a SQL query to order the (student ID, marks) table in descending order of the marks.

Solution:

Practical 8: for the given table โ€˜Hospitalโ€™ write SQL command to display name all patient admitted in month of May.

Solution:

Practical 9: for the given table โ€˜Hospitalโ€™ write SQL command to Display patient name in upper case with year of admission.

Solution:

Practical 10: for the given table โ€˜Hospitalโ€™ Create sql query to display first four letters of the patient name along with length of their name who admitted before may.

Solution:

Download Practical File IP Class 12 2022-23

Data Handling and Visualization Notes : https://techtipnow.in/data-handling-pandas-data-visualization-notes/

Database Query Using SQL Notes : https://techtipnow.in/class-12-ip-database-query-using-sql-notes/

Introduction to Computer Network : https://techtipnow.in/introduction-to-computer-network-notes/

Societal Impact Notes : https://techtipnow.in/societal-impact-notes-societal-impact-ip-class-12/

Previous Year Question Paper IP Class 12: https://techtipnow.in/previous-year-question-paper-ip-class-12/

CBSE Sample Papers : https://techtipnow.in/ip-sample-paper/

Practice Sample Paper IP : https://techtipnow.in/ip-sample-paper-class-12-with-solutions/

NCERT Text Book Solution IP Class 12: https://techtipnow.in/ncert-solution-ip-class-12/

Sumita Arora Textbook Solution : https://techtipnow.in/sumita-arora-textbook-solution-information-practices-xii/

Python Pandas Series MCQ : https://techtipnow.in/python-pandas-series-mcq/

Python DataFrame MCQ : https://techtipnow.in/python-pandas-dataframe-mcq/

Plotting with PyPlot MCQ : https://techtipnow.in/python-data-visualization-mcq/

Societal Impact MCQ : https://techtipnow.in/python-data-visualization-mcq/

SQL MCQs : https://techtipnow.in/sql-mcq-class-12/

MySQL Functions MCQ : https://techtipnow.in/mysql-functions-mcq/

IP Class 11 Notes : https://techtipnow.in/ip-class-11-notes/

IP Class 11 MCQs : https://techtipnow.in/ip-class-11-mcq/NCERT Solution Class 11: https://techtipnow.in/ncert-textbook-solution-ip-class-11/

2 thoughts on “Class 12 IP Practical File 2022-23 | Download PDF”

Leave a Comment

Your email address will not be published. Required fields are marked *

error: Content is protected !!