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

Mathakondapalli Model School (Cbse) Computer Science Practical List 2019-20 Grade-XII

This document contains a list of 20 computer science practical assignments for grade 12 students. The assignments cover a range of Python programming topics like arithmetic operations, Fibonacci series, data structures like lists, stacks and queues, data file handling, chart plotting, searching algorithms, and SQL database connectivity and operations. Students are asked to write programs to perform tasks like reading and writing to files, implementing stack and queue data structures, connecting to a MySQL database, and performing CRUD operations on database tables.

Uploaded by

Bahu Annadurai
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
52 views2 pages

Mathakondapalli Model School (Cbse) Computer Science Practical List 2019-20 Grade-XII

This document contains a list of 20 computer science practical assignments for grade 12 students. The assignments cover a range of Python programming topics like arithmetic operations, Fibonacci series, data structures like lists, stacks and queues, data file handling, chart plotting, searching algorithms, and SQL database connectivity and operations. Students are asked to write programs to perform tasks like reading and writing to files, implementing stack and queue data structures, connecting to a MySQL database, and performing CRUD operations on database tables.

Uploaded by

Bahu Annadurai
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

MATHAKONDAPALLI MODEL SCHOOL (CBSE)

Computer Science Practical List 2019-20


Grade-XII

1. Program to enter two numbers and print the arithmetic operations like +,-,*,/, // and %.
2. Write a Program to find factorial of the entered number.
3. Write a Program to check if the entered number is Armstrong or not.

4. Write a Program to enter the number of terms and to print the Fibonacci Series.
5. Write a Program to enter the numbers in a list using split () and to use all the functions related
to list.
6. Write a Program to read data from data file and show Data File Handling related
functions utility in python.
7. Write a program that reads characters from keyboard one by one. All lowercase
characters get stored inside the file lower.txt, all upper case characters get stored inside
the file upper.txt and all other characters get stored inside file others.txt
8. Write a program to read data from data file in read mode and count the particular word
occurrences in given string, number of times in Python.
9. Consider the data given below. Create sequences required from the data below:

Create a bar chart to see the distribution of monthly assessment marks from jun- Dec for
all the assessments.
10. Write a python program for the chart given below.

11. Write a Program to enter the number and print the Floyd’s Triangle in decreasing order.
12. Write a program to display unique vowels present in the given word using Stack.
13. Write a Program to enter the numbers and find Linear Search using data structure
14. Write a Program to enter the numbers and find Binary Search using recursion
15. Write a Python program to implement all basic operations of a stack, such as adding
element (PUSH operation), removing element (POP operation) and displaying the stack
elements (Traversal operation) using lists.
16. Write a program in Python to add, delete and display elements from a queue using
list.
17. Write a program to open a webpage using the urllib library.
18. Structured Query language
19. Write a Program to show MySQL database connectivity in python.
20. Perform all the operations with reference to table ‘Employee’ through MySQL-Python
connectivity.
a) Fetching all the records from EMP table having salary more than 70000.
b) Updating record(s) of the table using UPDATE
c) Deleting record(s) from table using DELETE

You might also like