Open navigation menu
Close suggestions
Search
Search
en
Change Language
Upload
Sign in
Sign in
Download free for days
0 ratings
0% found this document useful (0 votes)
39 views
32 pages
Adobe Scan Jan 11, 2024
Uploaded by
adityarajpatel930
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content,
claim it here
.
Available Formats
Download as PDF or read online on Scribd
Download
Save
Save Adobe Scan Jan 11, 2024 For Later
Share
0%
0% found this document useful, undefined
0%
, undefined
Print
Embed
Report
0 ratings
0% found this document useful (0 votes)
39 views
32 pages
Adobe Scan Jan 11, 2024
Uploaded by
adityarajpatel930
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content,
claim it here
.
Available Formats
Download as PDF or read online on Scribd
Carousel Previous
Carousel Next
Download
Save
Save Adobe Scan Jan 11, 2024 For Later
Share
0%
0% found this document useful, undefined
0%
, undefined
Print
Embed
Report
Download
Save Adobe Scan Jan 11, 2024 For Later
You are on page 1
/ 32
Search
Fullscreen
Experiment No: 1 Program 1: Input any number from user and calculate factorial of a number # Program to calculate factorial of entered number num = int(input("Enter any number :"}) fact n=num # storing num in n for printing while num>1 # loop to iterate from n to 2 fact = fact * num num-=1 print('Factorial of", n., ° is :",fact) OUTPUT Enter any number :6 Factorial of 6 is : 720Date Experiment No:2 Program 1: Input any number from user and check it is Prime no. or not #Program to input any number from user #Check it is Prime number of not import math pum = int(input(” any number :")) isPrimi for { in range(2,int(math.sqrt(num)}+ 1) if num % i == 0 isPrime=False if isPrime: print("@# Number is Prime ##") else: print('## Number is not Prime ##") OUTPUT Enter any number :117 ## Number is not Prime ## Enter any number :119 ## Number is not Prime ## Enter any number :113 ## Number is Prime ## er any number :7 ## Number is Prime #9 Enter any number :19 ## Number is Prime ##Program ; Write a program to find sum of elements of List recursively #Program to find sum of elements of list recursively def findSum(Ist,vum): if num==0 return 0 else return Ist{num-1]+findSum(lst mylist * || # Empty List #Loop to input in list num = int(input("Enter how many number :")) for i in range(num): n = int(input("Enter Element "+str{it 1)+":")) mylist.append(n) #Adding number to list sum = findSum(mylist,len(mylist)) print(‘Sum of List items ",mylist, ° is :’,sum) OUTPUT Enter how many number :6 Enter Element 1:10 Enter Element 2:20 Enter Element 3:30 Enter Element 4:40 Enter Element 5:50 tnter Element 6:60 st items [10, 20, 30, 40, 50, 60} is : 210me Program 1: Write a program to calculate the n% term of Fibonacel seri: #Program to find 'n'th term of fibonacci series # Fibonacci series : 0,1,1,2,3,5,8,13,21,34,55,89,, fnth term will be counted from 1 not 0 def nthfiboterm{n) ifne=1 return n return (nthfiboterm(n-1)+nthfiboterm(n-2}) ruin = int{input("Enter the ‘n’ term to find in fibonacei :) term =nthfiboterm(num) print(num,th term of fibonacei series is :’,term) OUTPUT _ Enter the ‘n’ term to find in fibonacci :10 10 th term of fibonacci series is ; 5SDate Experiment No: 5 ] Program : Program to search any word in given string/sentence #Program to find the occurence of any word in a string def countWord(str1 word) s = strl.split() count=0 for w in s; if weeword; countt=1 return count irl = input("Enter any sentence :") word = input("Enter word to search in sentence: count = countWord(strl ,ward) if count==0 rint('## Sorry! ",word,” not present ') else: print("## ";word," occurs ",count," times ## ") OUTPU Enter any sentence :my computer your computer our compliter everyanes computer Enter word to search in sentence ‘compute #@ computer accurs 4 times ## Enter any sentence :learning python is fun Enter word to search in sentence ## Sorry! java not presentDate Experiment No: 6 Program 1: Program to read and display file content line by line with each word separated by ‘4’ #Program to read content of file line by line #and display each word separated by "# f= open(‘file}.txt") for line in f words = line.split() for win words priniw+' \end=") print() fclose() NOTE : if the original content of file is: India is my country Jlove python Python learning is fun OUTPUT _ India#is#my#country# IWlove#python# Python#learning#is#fun#seriment No: 7 Program 1; Program to read the content of file and display the total number of consonants, uppercase, vowels and lower case characters’ #Program to read content of file and display total number of vowels, consonants, lowercase and uppercase characters f= open(‘filel txt") ve 0 uso 0 o-0 data = f.reado vowels=['a"/e",i'/0"/' for ch in dis if ch.isalphag) if ch tower) in vowels: veel elne ett if ch.iaupper() url elif ch.islower() I+} elif chl='' and chl='\n' tel Total Vowels in file v) Total Consonants in file in :",¢) Total Capital letters in file a) Total Small letters in file") Total Other than letters 0) fclose() NOTE ; if the original content of file is: India is my country Hove python Python learning is fun 123@ OUTPUT Total Vowels in file Total Consonants in file 1 Total Capital tetera in file Total Small letters in file Total Other than lettersProgram 1: Program to create binary file to store Rolino and Name, Search any Rolino and display name if Roltno found otherwise “Rolino not found” #Program to create a binary file to store Rollno and name WSearch for Rollno and display record if found Hotherwise "Roll no. not found import pickle student=[) f
prin a print()——OOOOOoooooeeeeee====" # main begins he Sl] tack top=None while True print("**** STACK DEMONSTRATION ****** print("1, PUSH ") print("2. POP") print("3, PEEK") print("4, SHOW STACK °) print("0, EXIT") ch = int(input("Enter your choice :")) ifeh==1 val = int(input("Enter Item to Push :")) Push(S,val) elif che=2: val = Pop(S) if val=="Underflow print("Stack is Empty") else print("\nDeleted ftem was elif che=3 val = Peek(S) if vale="Underflow’ print("Stack Empty") else: print(Top Item ;",val) elif ch==4 Show(S) elif ch==0: print("Bye") break ouTPUT_ STACK DEMONSTRATION PL POP 1OW STACK IT Enter your choice :1 Enter Item to Push :10*** STACK DEMONSTRATION * PUSH POP PEEK SHOW STACK EXIT ter your choice :1 enter Itern to Push :20 * STACK DEMONSTRATION * PUSH SHOW STACK EXIT 7 your choice :1 Item to Push :30 "ACK DEMONSTRATION ****** PUSH POP PEEK SHOW STACK EXIT Enter your choice <4 (Top) 30 <== 20 <== 10 « **** STACK DEMONSTRATION *** 1, PUSH 2. POP 3, PEEK 4. SHOW STACK ©, EXIT Enter your choice :3 ‘Top Item : 30 MONSTRATION ***## 1. PUSH 2. POP 3. PEEK 4. SHOW STACK 0, EXIT Enter your choice :2 Deleted IteSTACK DEMONSTRATION 1. PUSH 2. POP 3, PEEK 4, SHOW STACK 0. EXIT Enter your choice :4 (Top) 20 <== 10 <== **** STACK DEMONSTRATION ****** 1. PUSH 2. POP 3, PEEK 4, SHOW STACK 0, EXIT Enter your choice :0 Bye rage 18Program 1: Program to implement Queue in Python using List def isEmpty(Q): if len(Q)==0: return True else return False def Enqueue(Q, item): Q.append(item) if en(Q) front»rear=O else rear=len(Q}-1 def Dequeue(Q): return “Underflow val = Q.pop(0) if len(Q) fro! return val def Peck(Q) if isEmpty(Q) return "Underflow else front=0 return Qjfront| def Show(Q): print("Sorry No items in Queue t= len(Qy-l print("(Front)’.end=' front = 0 isfront rear = len(Q)-1 while(icerear) print(Qli) ive print)————————— 0-1 #Queue front ar=None while True: print("**** QUEUE DEMONSTRATION *** print(’1, ENQUEUE *) print("2, DEQUEUE") print("3, PEEK) print{"4. SHOW QUEUE “) print("0, EXIT) ch ® int(input('Enter your choice :") if ch==1 val = int(input{"Enter Item to Insert Enqueue(Q,val) elif ch== val = Dequeue(Q) ifval=="Underflow print(‘Queue is Empty") else: print("\nDeleted Item was :"\v elif ch==3: val = PeekiQ) if val=="Underflow print("Queue Empty") else: print{’Front Item :",val) elif che=4 Show(Q) elif ch==0 print["Bye") DEMONSTRATION ****** 4. SHOW QUE! Enter your choice :1 Enter Item to Insert :10 QUEUE DEMONSTRATION ****** 1. ENQUEUE DEQUEVE PEEK SHOW QUEUE 0. EXIT Enter your choice :1————————————___— ter Item to Insert *** QUEUE DEMONSTRATION ****** 1. ENQUEUE 2, DEQUEUE 3. PEEK 4. SHOW QUEUE 0. EXIT Enter your choice :1 Enter Item to Insert :30 * QUEUE DEMONSTRATION * ENQUEUE 2. DEQUEUE PEEK SHOW QUEUE EXIT Enter your choice :4 (Front) 10 = **“* QUEUE DEMONSTRATION ***** 1, ENQUEUE, 2. DEQUEUE 3, PI +, SHOW QUEUE 0. EXIT Enter your choice :3 Frant Item : 10 *** QUEUE DEMONSTRATION **¥*** 1. ENQUEUE 2. DEQUEUE 3. PEEK 4. SHOW QUEUE 0. EXIT Enter your choice :2 Deleted Item was : 10 ** QUEUE DEMONSTRATION * 4, SHOW QUEU! 0. EXIT Enter your choice :4 (Front) 20 ==> 30 ==> *** QUEUE DEMONSTRATION ™ ENQUEUE DEQUEUE PEE! SHOW QUEUE EXIT Enter your choice :0 ByeProgram 1; Program to take 10 sample phishing email, and find the most common word occurring #Program to take 10 sample phishing mail #and count the most commonly occuring word phishingemail=| "jackpotwindlottery.com “
[email protected]
' "“
[email protected]
”, "
[email protected]
"spinthewheelailipkart.com "
[email protected]
“
[email protected]
"
[email protected]
’ ‘
[email protected]
’ ‘
[email protected]
’ | myd={} for ¢ in phishingemail: x=e.split(@) for w in x if w not in myd: mydiw else: mydjw}+=1 key_max = max(myd,key=myd.get) print('Most Common Occuring word is :",key_max) OUTPUT _ ‘Most Common Occuring word is : mymoney.com—————————————————————————————————— Date Experiment No: 16 Program 1: Program to create 21 Stick Game so that computer always wins Rule of Game (Ta 1) User and Computer both can pick stick one by one 2) Maximum stick both can pick in 4 ie, 1 to 4 3) Anyone with last stick will be the looser def PrintStickin) print("o "*n) print("| "*n) print{"| “*n) print("| "*n) print("| “*n) TotalStick-21 win-False humanPlayer=True print Welcome To Stick Picking Game :: Computer Vs User ) print{"Rule: 1) Both User and Computer can pick sticks between 1 to 4 at a time") Print{’ 2) Whosoever picks the last stick will be the looser”) print( Lets Begin ======") playerName = input{"Enter Your Name :") userPick=0 PrintStick(TotalStick) while win==False: if humanPlayer==True: print("You Can Pick stick between 1 to 4") userPick=0 while userPick<=0 or userPick>4: userPick ~ int(input(playerName +": Enter Number af Stick to Pick”)) TotalStick=TotalStick - userPick humanPlayer-False PrintStick(TotalStick) print(*"*60) input(Press any key...") computerPick = (5-userPick) print(’Computer Picks : ";computerPick,” Sticks ") TotalStick=TotalStick -computerPick PrintStick(Total if TotalStick==1 print("## WINNER : COMPUTER ##”) win=True print("*"*60) input(Press any key...") humanPlayer=True—_—_—____SSSSSSS====5 OUTPUT _ === Welcame To Stick Picking Game :: Computer Vs User = Rule; 1) Both User and Computer can pick sticks between 1 to 4 ata time 2) Whosoever picks the last stick will be the looser Enter Your Name :RAJ VHtitt ial 1 | I Hrintiyy HIIElttl HEH PELLET 1 Can Pick stick between 1 to 4 J: Enter Number of Stick ta Pick3 EPP tbr tered FIPPEEELPet tere PITEETTTEEitttel LULL Press any key Computer Picks | 2 Sticks PEPE Pert bree Pride V1 Priya it Wy i Press any key You Can Pick stick between 1 to4 RAd: Enter Number of Stick to Pick Press any keey Computer Picks : 1 Sticks rei reid rei Hi You Can Pick stick between 1 to 4 RAJ: Enter Number of Stick to Pick HrEdt died Hhidttied HEPEn itl PPErneelPress any key Computer Picks a I tI i You Can Pick stick between 1 to 4 RAJ: Enter Number of Stick to Pick3 ' | | Press any key Computer Picks ; 2 COMPUTER ##Program 1: Program to connect with database and store record of emplayee and display records, import ry eayCOn 127.0.0.1' user=root’ password="adi eur = con.cursor() cur.execute("create database if not exists company) eur exectite("use company’) cur execute("create tuble if not exists employee(empno int, name yarchar(20), dept varchar(20),salary int)") con.commith) choice=None while choice!~0 print("1, ADD RECORD ") print("2, DISPLAY RECORD ") print((0. EXIT) choice = intfmput("Enter Choice :")) if choice == 1 ¢ = int(input("Enter Employee Number n= input("Enter Name *") input("Enter Department :*) 3 = intfinput("Enter Salary =) query="insert into employee values( cur.execute(query) con.commit) print("## Data Saved #0") lif choice == 2 query="select * from employee cur.execute(query) result = cur.fetchall) print("%ol Ox"%6" EMPNO”,"%203"%0" NAME" ,"% 159°%" DEPARTMENT 108"96"SALARY) for row in result print("%108"%row[0) ,"%208"%row]1],"%1 S8"%orow[2],"% 108" %row]3}) clif choice=-0 con.close() print('## Byell #6") else print("## INVALID CHOICE ##°)1. ADD RECORD 2. DISPLAY RECORD 0. EXIT Enter Choice :1 Enter Employee Number :1 Enter Name :AMIT Enter Department :SALES Enter Salary :9000 ## Data Saved ## 1. ADD RECORD 2, DISPLAY RECORD IT Enter Choice :1 1 employee Number :2 Name :NITIN Department :IT ry :80000 aved Hi 1, ADD RECORD 2, DISPLAY RECORD 0, EXIT Enter Choice :2 EMPNO NAME DEPARTMENT SALARY 1 AMIT SALE 9000 2 NITIN Ir 80000 ADD R “ORD 1H Byel! ##periment No: 18 Program 1: Program to connect with database and search employee number in table employee and display recerd, f empno not found display| appropriate message. import mysql.connector ax mycon con = mycon.cannect(hout="127.0.0.1' user='root’,password="adimin database="company’) cur = con.cursor() print("#""40) print(’EMPLOYEE SEARCHING FORM’) print{""*40) print("\n\n') while ans.lower()==V’ eno = int{input(“ENTER EMPNO TO SEARCH :" query="select * from employee where empno={".format(eno} cur.execute(query} result = cur.fetchalll) if cur.roweount=*0: print("Sorry! Empno not found ") (0x"%"EMPNO", “%208"%" NAME", “Yo1 5a"%" DEPARTMENT SALARY") for row in result print("%610s"%rew{0}," ; ow|2],"%108"%row3}) ans=input("SEARCH MORE (¥) :’) OUTPUT HHMONNTANnHMHHERA HeMHanAnOdaHONeNAnanAR EMPLOYEE SEARCHING FORM HHAMNAEAHHNNOONERHHNORNAMNEHUROUEHHBNHER ENTER EMPNO TO SEARCH :1 EMPNO NAME DEPARTMENT SALARY AMIT SALES 9000 SEARCH MORE (¥) sy ENTER EMPNO TO SEARCH :2 EMPNO NAME DEPARTMENT SALARY 2 nrrin rr 80000 SEARCH MORE (¥) -y ENTER EMPNO TO SEARCH :4 Sorry! Empno not found SEARCH MORE (¥) :1Program 1: Program to connect with database and update the employee record of entered empno. ort mysql.connector as mycon con = mycon,connect(host='127,0.0.1' ,user='root’ password="4 database="company’) cur = con.cursor{} print('#"*40) print((EMPLOYEE UPDATION FORM’) print("#"*40) Print(’\n\n’) y while ans.lower(}=='y eno = int(input("ENTER EMPNO TO UPDATE :*)) query="select * from employee where cur.execute(query) result = cur.fetchall() if curroweount=«( print("Sorry! Empno not found ") pno=f}".format{eno) print("%108"%"EMPNO","%208"%"NAME: 1°" DEPARTMENT 108°%6" SALARY") for row in result Brint("% 108"%row{0} "96208 "%row4 1] choice=input("\n## ARE YOUR SURE TO UPDA‘ if choice lower(}=='y print("== YOU CAN UPDATE ONLY DEPT AND SALARY print("== FOR EMPNO AND NAME CONTACT ADMIN ==") @~ input? ENTER NEW DEPARTMENT (LEAVE BLANK IF NOT WANT 1,°% 108"%row 3h) TO CHANGE J) ifd= d=row{2} ty 5 = int(input(ENTER NEW SALARY,(LEAVE BLAN WANT TO CHANGE ) *)) except s=row/3} query~"update employee set dept='j',salary=i} where empno={ format (d.n,eno) cur.execute(query) con.commnit() print(“## RECORD UPDATED #0 ") ans=input((UPDATE MORE (¥) :")TTTLLELLEEL aeae Lee LLLLLL MPLOYEE UPDATION FORM annawanunenane dunnnoneunenneens ENTER EMPNO TO UPDATE :2 MPNO. NAME DEPARTMENT SALARY 2 NITIN rr 90000 ## ARE YOUR SURE TO UPDATE ? (¥) y == YOU CAN UPDATE ONLY DEPT AND SALARY = == FOR EMPNO AND NAME CONTACT ADMIN ~ ENTER NEW DEPARTMENT (LEAVE BLANK IF NOT WANT TO CHANGE ) ENTER NEW SALARY (LEAVE BLANK IF NOT WANT TO CHANGE } ## RECORD UPDATED UPDATE MORE (Y) :y ENTER EMPNO TO UPDATE EMPNO NAME DEPARTMENT SALARY 2 NITIN ir 90000 ## ARE YOUR SURE TO UPDATE ? (¥) :y == YOU CAN UPDATE ONLY DEPT AND SALARY == FOR EMPNO AND NAME CONTACT ADMIN ENTER NEW DEPARTMENT (LEAVE BLANK IF NOT WANT TO CHANGE jSAL ENTER NEW SALARY (LEAVE BLANK IF NOT WANT TO CHANGE | ## RECORD UPDATED ## UPDATE MORE (Y) :¥ ENTER EMPNO TO UPDATE :2 NAME DEPARTMENT SALARY 2 NITIN SALES 90000 ## ARE YOUR SURE TO UPDATE ? (¥) :¥ == YOU CAN UPDATE ONLY DEPT AND SALARY = == FOR EMPNO AND NAME CONTACT ADMIN « ENTER NEW DEPARTMENT (LEAVE BLANK IF NOT WANT TO CHANGE ) ENTER NEW SALARY (LEAVE BLANK IF NOT WANT TO CHANGE ## RECORD UPDATED ## UPDATE MORE (¥) -¥ PNO TO UPDATE :2 NAME DEPARTMENT SALARY TIN si 91000 ## ARE YOUR SURE TO UPDATE ? (¥) :N MORE (¥) -NProgram 1: Program to connect with database and delete the record of| ‘entered employee number. import mysql.connector ax mycon con = mycan.connect(host~'127.0.0. 1 trser d company") cur = con.cursor(} print("#"*40) print("EMPLOYEE DELETION FORM) print(“#"*40) print(’\n\n") root’, password="admin’ ans.lower()==\y eno = int(input("ENTER EMPNO TO DELETE :)) query="select * from employee where empno=f)’forn cur.execute(query) resuilt = cur,fetchall}) if cur.roweount==0; print{"Sorry! Empno not found ») else print("%108"%" EMPNO”,"%208"96" NAME TMENT" 108"96” SALARY’) for row in result print("%10s"%row{0},"%20s"%row{1] row{2],"%108"%4rew!3)) choice=input(" \n## ARE YOUR SURE TO DELETE ? (¥) :) if choice lower(}=~'y query='delete from employee where empn: cur.execute(query) con,commit() print('="+ RECORD DELETED SUCCESSFULLY! ===") minput(DELETE MORE ? (¥) >) OUTPUT NUHHOERR EERE HEHHENOHUNNNNHROHEMEHR ERE EMPLOYEE DELETION FORM NONNEMEEEOMAIHERIMNHHRI OHM OR AMeRHOHEH (eno) ENTER EMPNO TO DELETE EMPNO NAME DEPARTMENT SALARY 2 NITIN SALES 91000 W ARE YOUR SURE TO DELETE ? (Y)-y “= RECORD DELETED SUCCESSFULLY! DELETE MORE ? (¥) vy ENTER EMPNO TO DELETE Sorry! Empno not found DELETE MORE ? (Y) in
You might also like
Computer Science Practical File XII
PDF
No ratings yet
Computer Science Practical File XII
29 pages
12 Cs 24 Practical
PDF
No ratings yet
12 Cs 24 Practical
29 pages
Class Xii Python - Merged
PDF
No ratings yet
Class Xii Python - Merged
28 pages
Computer Science Practical File XII
PDF
No ratings yet
Computer Science Practical File XII
32 pages
Computer Science Practical File XII
PDF
No ratings yet
Computer Science Practical File XII
34 pages
11th Pratical File by Adhayyan Sir
PDF
No ratings yet
11th Pratical File by Adhayyan Sir
25 pages
Display Total No. of Vowels
PDF
No ratings yet
Display Total No. of Vowels
33 pages
Computer Science Journal Program
PDF
No ratings yet
Computer Science Journal Program
13 pages
CS Practical File XII 2023 - 2024 Final
PDF
No ratings yet
CS Practical File XII 2023 - 2024 Final
40 pages
Practical File: Computer Science
PDF
No ratings yet
Practical File: Computer Science
35 pages
Computer Science Practical File XII
PDF
No ratings yet
Computer Science Practical File XII
32 pages
Abhishek Code
PDF
No ratings yet
Abhishek Code
15 pages
Computer Science 2022-Practical File
PDF
No ratings yet
Computer Science 2022-Practical File
32 pages
Computer Science Practical File XII - Unlocked
PDF
No ratings yet
Computer Science Practical File XII - Unlocked
24 pages
Python
PDF
No ratings yet
Python
51 pages
Practical qns+2 CS2022
PDF
No ratings yet
Practical qns+2 CS2022
31 pages
XII Practical Program File Term1 2021 Zeeshan
PDF
No ratings yet
XII Practical Program File Term1 2021 Zeeshan
25 pages
Cs Record File
PDF
No ratings yet
Cs Record File
19 pages
Solution - Practical - File - List - XII - CS - 202425
PDF
No ratings yet
Solution - Practical - File - List - XII - CS - 202425
11 pages
Project
PDF
No ratings yet
Project
44 pages
Cs Programs 2024-2025
PDF
No ratings yet
Cs Programs 2024-2025
58 pages
Class 12 Practical File 2024-25
PDF
No ratings yet
Class 12 Practical File 2024-25
20 pages
Practical File
PDF
No ratings yet
Practical File
32 pages
LabManual (1 13)
PDF
No ratings yet
LabManual (1 13)
24 pages
Comp Science
PDF
No ratings yet
Comp Science
32 pages
12th Practical (23-24)
PDF
No ratings yet
12th Practical (23-24)
10 pages
Program Python by Shailesh
PDF
No ratings yet
Program Python by Shailesh
48 pages
Final CS Practical
PDF
No ratings yet
Final CS Practical
25 pages
Practical File 1 Xii Cs
PDF
No ratings yet
Practical File 1 Xii Cs
7 pages
Output
PDF
No ratings yet
Output
60 pages
Final Practical File of 2024-25 Class 12
PDF
No ratings yet
Final Practical File of 2024-25 Class 12
46 pages
Computer Science 24 25
PDF
No ratings yet
Computer Science 24 25
27 pages
Finally Yy Yyy Yyy
PDF
No ratings yet
Finally Yy Yyy Yyy
33 pages
Solution Comp.-Sci.-083
PDF
No ratings yet
Solution Comp.-Sci.-083
38 pages
Wa0001
PDF
No ratings yet
Wa0001
27 pages
Aditya Kumar CS Practical File
PDF
No ratings yet
Aditya Kumar CS Practical File
27 pages
Cspratical
PDF
No ratings yet
Cspratical
33 pages
Class Xii Cs Practical Solutions 2025-26
PDF
No ratings yet
Class Xii Cs Practical Solutions 2025-26
11 pages
Practical File
PDF
No ratings yet
Practical File
36 pages
Class 12 Practical List
PDF
No ratings yet
Class 12 Practical List
21 pages
Cs Practical File
PDF
No ratings yet
Cs Practical File
30 pages
Programfiles Grade12
PDF
No ratings yet
Programfiles Grade12
26 pages
Siya CS Practical
PDF
No ratings yet
Siya CS Practical
34 pages
Computer Class 12 Project
PDF
100% (1)
Computer Class 12 Project
39 pages
Anshu Kumar
PDF
No ratings yet
Anshu Kumar
90 pages
Grade 12 Lab Exercise Code
PDF
No ratings yet
Grade 12 Lab Exercise Code
38 pages
Cbse-12th-Lab Programs-Cs-Part-Ii
PDF
No ratings yet
Cbse-12th-Lab Programs-Cs-Part-Ii
22 pages
Python Programs
PDF
No ratings yet
Python Programs
94 pages
Shashaa FINAL PRACTICAL
PDF
No ratings yet
Shashaa FINAL PRACTICAL
46 pages
Computer Science Practical File XII 1 To 9
PDF
No ratings yet
Computer Science Practical File XII 1 To 9
13 pages
Computer Science of Vaibhav Sengar
PDF
No ratings yet
Computer Science of Vaibhav Sengar
37 pages
CS Practical2
PDF
No ratings yet
CS Practical2
49 pages
Practical File (Raj)
PDF
No ratings yet
Practical File (Raj)
18 pages
CS PRACTICALS List
PDF
No ratings yet
CS PRACTICALS List
34 pages
CS Practical File - Adarsh
PDF
No ratings yet
CS Practical File - Adarsh
30 pages
Hospital Management System
PDF
No ratings yet
Hospital Management System
19 pages
Practical File Computer Science - 24 - 25
PDF
No ratings yet
Practical File Computer Science - 24 - 25
25 pages
Solution of Practicals Class Xii Comp. Sci. 083 2022 23
PDF
No ratings yet
Solution of Practicals Class Xii Comp. Sci. 083 2022 23
15 pages
File Handling Worksheet
PDF
No ratings yet
File Handling Worksheet
19 pages