Computer Science Grade12
Computer Science Grade12
PROJECT FILE
MADE BY:
Aaditya.s.Athreya
XII-B
ACKNOWLEDGEMENT
QUADRATIC EQUATION
PROGRAM TO CHECK BUZZ AND ARMSTRONG NUMBER
PALINDROME AND FACTORIAL
import pickle
while True:
print("Type 1 to insert rec")
print("Type 2 to display rec")
print("Type 3 to search rec")
print("Type 4 to update rec")
print("Type 5 to delete rec")
choice=int(input("Enter your choice "))
if choice==0:
break
elif choice==1:
insertRec()
elif choice==2:
readRec()
elif choice==3:
r=int(input("Enter a roll no to search "))
searchRollno(r)
elif choice==4:
r=int(input("enter a rollno "))
m=int(input("enter new marks "))
updateMarks(r,m)
elif choice==5:
r=int(input("Enter a rollno "))
deleteRec(r)
OUTPUT