Solution of Practical
Solution of Practical
Solution of Practical
com/
CLASS-XII
SUBJECT – COMPUTER SCIENCE (083)
PRACTICAL FILE SOLUTION
PRACTICAL
NO. OBJECTIVE & SOLUTION
1. Write a program in python to check a number whether it is prime or not.
num=int(input("Enter the number: "))
for i in range(2,num):
if num%i==0:
SOURCE print(num, "is not prime number")
CODE: break;
else:
print(num,"is prime number")
OUTPUT:
OUTPUT:
CI= p*x-p
print("Compound interest is : ", round(CI,2))
OUTPUT:
if y==True:
print("String is Palindrome")
else:
print("String is Not Palindrome")
OUTPUT:
Enter the string : madam
String is Palindrome
10. Write a program to count the number of vowels present in a text file.
fin=open("D:\\python programs\\Book.txt",'r')
str=fin.read( )
count=0
SOURCE for i in str:
CODE: if i=='a' or i=='e' or i=='i' or i=='o' or i=='u':
count=count+1
print(count)
OUTPUT: 9
Write a program to write those lines which have the character 'p' from one text
11.
file to another text file.
fin=open("E:\\book.txt","r")
fout=open("E:\\story.txt","a")
s=fin.readlines( )
for j in s:
SOURCE
CODE: if 'p' in j:
fout.write(j)
fin.close()
fout.close()
OUTPUT: **Write contents of book.txt and story.txt
12. Write a program to count number of words in a file.
fin=open("D:\\python programs\\Book.txt",'r')
str=fin.read( )
L=str.split()
SOURCE
CODE: count_words=0
for i in L:
count_words=count_words+1
print(count_words)
OUTPUT: 16
Write a python function sin(x,n) to calculate the value of sin(x) using its taylor
13. series expansion up to n terms.
import math
def fact(k):
if k<=1:
return 1
else:
return k*fact(k-1)
SOURCE
CODE: step=int(input("How many terms : "))
x=int(input("Enter the value of x :"))
sum=0
for i in range(step):
sum+=(math.pow(-1,i)*math.pow(x,2*i+1))/fact(2*i+1)
OUTPUT:
Enter a number between 1 to 6 : 4
Sorry, Try again, The lucky number was : 1
15. Write a program to create a library in python and import it in a program.
#Rect.py
class Rectangle:
def __init__(self):
print("Rectangle")
SOURCE
CODE: def Area(self, length, width):
self.l=length
self.w=width
print("Area of Rectangle is : ", self.l*self.w)
#Sq.py
class Square:
def __init__(self):
print("Square")
def Area(self, side):
self.a=side
print("Area of square is : ", self.a*self.a)
#Tri.py
class Triangle:
def __init__(self):
print("Trinagle")
#main.py
from Shape import Rect
from Shape import Sq
from Shape import Tri
Rectangle
Area of Rectangle is : 200
Square
OUTPUT: Area of square is : 100
Trinagle
Area of Triangle is : 24.0
Write a program to plot a bar chart in python to display the result of a school for
16.
five consecutive years.
import matplotlib.pyplot as pl
year=['2015','2016','2017','2018','2019'] # list of years
p=[98.50,70.25,55.20,90.5,61.50] #list of pass percentage
SOURCE j=['b','g','r','m','c'] # color code of bar charts
CODE: pl.bar(year, p, width=0.2, color=j) # bar( ) function to create the bar chart
pl.xlabel("year") # label for x-axis
pl.ylabel("Pass%") # label for y-axis
pl.show( ) # function to display bar chart
OUTPUT:
OUTPUT:
OUTPUT:
OUTPUT:
Enter the elements:[67,13,89,34,65,8,74,19]
The sorted list is : [8, 13, 19, 34, 65, 67, 74, 89]
21. Write a menu based program to perform the operation on stack in python.
class Stack:
def __init__(self):
self.items = [ ]
def size(self): # Size of the stack i.e. total no. of elements in stack
return len(self.items)
s = Stack( )
print("MENU BASED STACK")
cd=True
while cd:
print(" 1. Push ")
print(" 2. Pop ")
print(" 3. Display ")
print(" 4. Size of Stack ")
print(" 5. Value at Top ")
if choice==1:
val=input("Enter the element: ")
s.push(val)
elif choice==2:
if s.items==[ ]:
print("Stack is empty")
else:
print("Deleted element is :", s.pop( ))
elif choice==3:
print(s.items)
elif choice==4:
print("Size of the stack is :", s.size( ))
elif choice==5:
print("Value of top element is :", s.peek( ))
else:
print("You enetered wrong choice ")
def size(Q): # Size of the queue i.e. total no. of elements in queue
return len(Q.items)
q = Queue( )
print("MENU BASED QUEUE")
cd=True
while cd:
print(" 1. ENQUEUE ")
print(" 2. DEQUEUE ")
print(" 3. Display ")
print(" 4. Size of Queue ")
print(" 5. Value at rear ")
choice=int(input("Enter your choice (1-5) : "))
if choice==1:
val=input("Enter the element: ")
q.Enqueue(val)
elif choice==2:
if q.items==[ ]:
print("Queue is empty")
else:
print("Deleted element is :", q.Dequeue( ))
elif choice==3:
print(q.items)
elif choice==4:
print("Size of the queue is :", q.size( ))
elif choice==5:
print("Value of rear element is :", q.peek( ))
else:
print("You enetered wrong choice ")
if CQ.front==-1:
print("Queue is empty")
elif CQ.front==CQ.rear:
CQ.queue.pop(CQ.front)
CQ.front=CQ.front+1
else:
CQ.queue.pop(CQ.front)
CQ.front = (CQ.front + 1) % CQ.maxSize
q = CircularQueue()
print("MENU BASED CIRCULAR QUEUE")
cd=True
while cd:
print("1. ENQUEUE")
print("2. DEQUEUE")
print("3. DISPLAY ")
print("4. Front Position ")
print("5. Rear Position ")
if choice==1:
val=input("Enter the element: ")
q.C_enqueue(val)
elif choice==2:
q.C_dequeue()
elif choice==3:
print(q.queue)
elif choice==4:
print("Front element position :", q.front)
elif choice==5:
print("Rear element position : ", q.rear)
else:
print("You entered invalid choice: ")
res=str(eval(operator))
strvar.set(res)
root=Tk()
root.title("Calculator")
operator=''
strvar=StringVar()
ent=Entry(root,width=50,bd=5,font=('arial',10,"bold"),bg="powder
blue",textvariable=strvar,justify="right").grid(columnspan=4)
btn7=Button(root,text="7",padx=10,pady=10,font=('arial',10,"bold"),bg="powd
er blue",command=lambda:btnClick(7)).grid(row=1,column=0)
btn8=Button(root,text="8",padx=10,pady=10,font=('arial',10,"bold"),bg="powd
er blue",command=lambda:btnClick(8)).grid(row=1,column=1)
btn9=Button(root,text="9",padx=10,pady=10,font=('arial',10,"bold"),bg="powd
er blue",command=lambda:btnClick(9)).grid(row=1,column=2)
btnPlus=Button(root,text="+",padx=10,pady=10,font=('arial',10,"bold"),bg="po
wder blue",command=lambda:btnClick('+')).grid(row=1,column=3)
btn4=Button(root,text="4",padx=10,pady=10,font=('arial',10,"bold"),bg="powd
er blue",command=lambda:btnClick(4)).grid(row=2,column=0)
btn5=Button(root,text="5",padx=10,pady=10,font=('arial',10,"bold"),bg="powd
er blue",command=lambda:btnClick(5)).grid(row=2,column=1)
btn6=Button(root,text="6",padx=10,pady=10,font=('arial',10,"bold"),bg="powd
er blue",command=lambda:btnClick(6)).grid(row=2,column=2)
btnMinus=Button(root,text="-
",padx=10,pady=10,font=('arial',10,"bold"),bg="powder
blue",command=lambda:btnClick('-')).grid(row=2,column=3)
btn1=Button(root,text="1",padx=10,pady=10,font=('arial',10,"bold"),bg="powd
er blue",command=lambda:btnClick(1)).grid(row=3,column=0)
btn2=Button(root,text="2",padx=10,pady=10,font=('arial',10,"bold"),bg="powd
er blue",command=lambda:btnClick(2)).grid(row=3,column=1)
btn3=Button(root,text="3",padx=10,pady=10,font=('arial',10,"bold"),bg="powd
er blue",command=lambda:btnClick(3)).grid(row=3,column=2)
btnMulti=Button(root,text="x",padx=10,pady=10,font=('arial',10,"bold"),bg="p
owder blue",command=lambda:btnClick('*')).grid(row=3,column=3)
btn0=Button(root,text="0",padx=10,pady=10,font=('arial',10,"bold"),bg="powd
er blue",command=lambda:btnClick(0)).grid(row=4,column=0)
btnClear=Button(root,text="C",padx=10,pady=10,font=('arial',10,"bold"),bg="p
owder blue",command=btnClear).grid(row=4,column=1)
btnEqual=Button(root,text="=",command=result,padx=10,pady=10,font=('arial',
10,"bold"),bg="powder blue").grid(row=4,column=2)
btnDivide=Button(root,text="/",padx=10,pady=10,font=('arial',10,"bold"),bg="p
owder blue",command=lambda:btnClick('/')).grid(row=4,column=3)
Label(root,text="By:
PythonSchoolKVS",font=('arial',10,'italic'),fg='white',bg='black').grid(row=5,co
lumnspan=4)
root.mainloop( )
OUTPUT:
d={ }
L=a.lower().split( )
for word in L:
word = word.replace(".","")
word = word.replace(",","")
SOURCE
CODE: word = word.replace(":","")
word = word.replace("\"","")
word = word.replace("!","")
word = word.replace("&","")
word = word.replace("*","")
for k in L:
key=k
if key not in d:
count=L.count(key)
d[key]=count
word_counter = collections.Counter(d)
fin.close( )
SOURCE
CODE:
def writecsv( ):
with open('C:\\Users\\ViNi\\Downloads\\data.csv', mode='a', newline='') as
file:
writer = csv.writer(file, delimiter=',', quotechar='"')
Write a Django based web application and write the data to a csv file.
29.
Open view.py, and write following code:
SOURCE
CODE:
Find the name and salary of those employees whose salary is between 35000
B. and 40000.
C. Find the name of those employees who live in guwahati, surat or jaipur city.
SELECT Ename, city
SOLUTION
FROM EMPLOYEE
WHERE city IN(‘Guwahati’,’Surat’,’Jaipur’);
D. Display the name of those employees whose name starts with ‘M’.
SELECT Ename
FROM EMPLOYEE
SOLUTION WHERE Ename LIKE ‘M%’;
List the name of employees not assigned to any department.
E.
SELECT Ename
SOLUTION
FROM EMPLOYEE
WHERE Dept IS NULL;
Find maximum salary of each department and display the name of that department
which has maximum salary more than 39000.
H.
SELECT Dept, max(salary)
FROM EMPLOYEE
WHERE max(salary)>39000
group by Dept
31. Queries for Aggregate functions- SUM( ), AVG( ), MIN( ), MAX( ), COUNT( )
a. Find the average salary of the employees in employee table.
Solution:- SELECT avg(salary)
FROM EMPLOYEE;
b. Find the minimum salary of a female employee in EMPLOYEE table.
Solution:- SELECT Ename, min(salary)
FROM EMPLOYEE
WHERE sex=’F’;
c. Find the maximum salary of a male employee in EMPLOYEE table.
Solution:- SELECT Ename, max(salary)
FROM EMPLOYEE
WHERE sex=’M’;
d. Find the total salary of those employees who work in Guwahati city.
Solution:- SELECT sum(salary)
FROM EMPLOYEE
WHERE city=’Guwahati’;
e. Find the number of tuples in the EMPLOYEE relation.
Solution:- SELECT count(*)
FROM EMPLOYEE;
32. Write a program to connect Python with MySQL using database connectivity and
perform the following operations on data in database: Fetch, Update and delete
the data.
A. CREATE A TABLE
import mysql.connector
demodb = mysql.connector.connect(host="localhost", user="root",
passwd="computer", database="EDUCATION")
SOLUTION democursor=demodb.cursor( )
democursor.execute("CREATE TABLE STUDENT (admn_no int primary key,
sname varchar(30), gender char(1), DOB date, stream varchar(15), marks
float(4,2))")