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

Class 12 Practical and Project

The document outlines the practical examination structure for Class XII Computer Applications, with a total of 30 marks divided among Python programming, MySQL, lab book, and viva. It includes a suggested list of Python programs to be implemented, covering various basic programming concepts and patterns. Additionally, it provides guidelines for database management tasks using SQL commands on a student table.

Uploaded by

shantamroybarman
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)
35 views2 pages

Class 12 Practical and Project

The document outlines the practical examination structure for Class XII Computer Applications, with a total of 30 marks divided among Python programming, MySQL, lab book, and viva. It includes a suggested list of Python programs to be implemented, covering various basic programming concepts and patterns. Additionally, it provides guidelines for database management tasks using SQL commands on a student table.

Uploaded by

shantamroybarman
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

CLASS XII

COURSE CODE : COMA (PRACTICAL)

Full Marks: 30
1. Python Program 12 Marks
 Coding 9 Marks
 Output 3 Marks
2. MYSQL 10 Marks
 Table creation 3 Marks
 Data insertion in table 2 Marks
 Two Queries 5 Marks
3. Lab Book 3 Marks
4. Viva 5 Marks

Suggested Practical List


List of Suggestive Python Program

● Input a welcome message and display it.


● Input two numbers and display the larger / smaller number.
● Input three numbers and display the largest / smallest number.
● Generate the following patterns using nested loops:
Pattern-1 Pattern-2 Pattern-3
* 12345 A
** 1234 AB
*** 123 ABC
**** 12 ABCD
***** 1 ABCDE

● Write a program to input the value of x and n and print the sum of the following series:

● Determine whether a number is a perfect number, an Armstrong number or a palindrome.


● Input a number and check if the number is a prime or composite number.
● Display the terms of a Fibonacci series.
● Compute the greatest common divisor and least common multiple of two integers.
● Count and display the number of vowels, consonants, uppercase, lowercase characters in string.
● Input a string and determine whether it is a palindrome or not; convert the case of characters in a string.
● Find the largest/smallest number in a list.
● Input a list of numbers and swap elements at the even location with the elements at the odd location.
● Input a list of elements, search for a given element in the list.
● Write a random number generator that generates random numbers between 1 and 6.

Database Management System

● Create a student table and insert data. Implement the following SQL commands on the student table:

o ALTER table to add new attributes / modify data type / drop attribute
o UPDATE table to modify data
o ORDER By to display data in ascending / descending order
o DELETE to remove tuple(s)

o GROUP BY and find the min, max, sum, count and average.

o LIKE, DISTINCT, NOT IN, IN, JOIN, CARTISIAN PRODUCT, SET DIFFERENCE, UNION, INTERSECTION etc.

You might also like