0% found this document useful (0 votes)
36 views2 pages

Practical List For Final Term

The document contains a list of 30 practical assignments for Class 12 students covering topics like programming patterns, functions, file handling, recursion, sorting, data structures, mathematical series, plotting graphs, SQL queries, and building web applications using Django. The practicals involve writing programs in Python to solve problems, integrate Python with databases, and develop basic web servers and applications. Students are expected to complete the practicals and get them signed by the teacher.

Uploaded by

singlaanush18
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)
36 views2 pages

Practical List For Final Term

The document contains a list of 30 practical assignments for Class 12 students covering topics like programming patterns, functions, file handling, recursion, sorting, data structures, mathematical series, plotting graphs, SQL queries, and building web applications using Django. The practicals involve writing programs in Python to solve problems, integrate Python with databases, and develop basic web servers and applications. Students are expected to complete the practicals and get them signed by the teacher.

Uploaded by

singlaanush18
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/ 2

SCHOOL OF EXCELLENCE

KHICHRIPUR DELHI (1002400)


Session 2019-20
List of Practical
Name:……………………………. Roll No……………….. Class: XII A
S.No. Name of Practical Date Sign
1 Write different programs to print the following patterns.
*******
* *
*
* ** * *
* *** * * *
*
**** * * * *
*
******* * * * * *
*****

2 Write a void function that receives a 4 digit number and calculates the sum of
squares of first 2 digits and last 2 digits numbers. E.g if 1234 is passed as
argument then function should calculate 122+342.
3 Write a program (WAP) that program that prompts the user for a file name
and then reads and print the contents of the requested file in upper case.
4 WAP to print a string in reverse order.
5 WAP to count the word “to” and “the” present in the file “poem.txt”
6 Write a recursive Program to print Fibonacci series up to nth term.
7 Write a recursive Program to search an element in the list using binary search.
8 WAP to insert an element in a sorted array using traditional method.
9 WAP to delete an element from sorted linear list.
10 WAP that depending upon user’s choice, either pushes, pop, or traverse the
stack.
11 WAP that depending upon user’s choice, either enqueue, dequeue, or traverse
the Queue.
12 Write a program to find the sum of following series? (Input x and n both)

13 Write a program to plot a bar chart in python to display the result of a school
for five consecutive years.
14 Given two integers x and n, compute xn.
Compute the greatest common divisor and the least common multiple of two
15 integers.
Test if a number is equal to the sum of the cubes of its digits. Find the smallest
16 and largest such numbers.
17 Write a program to find the most common words in a file.
Remove all the lines that contain character ‘a’ in the file and write it to
18 another file.
Write a program to generate random numbers between 1 to 6 and check
19 whether a user won a lottery or not.
20 Write a program in python to plot a graph for the function y = x^2
Write a program in python to plot a pie chart on consumption of water in daily
21 life.
22 Write a program to calculate EMI for a loan using numpy.
23 Write a program to open a webpage using urllib library.
Write a Django based web application to parse a user request (POST) and
24 write the data to a csv file.
25 Find the min, max, sum, and average of the marks in as student marks table.
Find the total number of customers from each country in the table (customer
26 ID, customer name, country) using group by.
Write a SQL query to order the (Student_ID, marks) table in descending order
27 of the marks
28 Integrate SQL with Python by importing the MySQL module.
Write a Django based web server to parse a user request (POST), and write it
29 to a CSV file.
Write a program to connect Python with MySQL using database connectivity
and perform the following operations on data in database: Fetch, Update and
30 delete the data

You might also like