Location via proxy:
[ UP ]
[Report a bug]
[Manage cookies]
No cookies
No scripts
No ads
No referrer
Show this form
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)
20 views
Python Final
Python
Uploaded by
dartionjp
AI-enhanced title
Copyright
© © All Rights Reserved
Available Formats
Download as PDF or read online on Scribd
Download now
Download
Save Python_Final For Later
Download
Save
Save Python_Final For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
0 ratings
0% found this document useful (0 votes)
20 views
Python Final
Python
Uploaded by
dartionjp
AI-enhanced title
Copyright
© © All Rights Reserved
Available Formats
Download as PDF or read online on Scribd
Download now
Download
Save Python_Final For Later
Carousel Previous
Carousel Next
Save
Save Python_Final For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
Download now
Download
You are on page 1
/ 11
Search
Fullscreen
KADI SARVA VISHWAVIDHYALAYA B.E. Semester VI CC 605.3/11 608.3 ~ PYTHON PROGRAMMING Time 1030 AM to 6130 PM TOTAL MARKS: 70 Instructions Answer each section in separate answer sheet 2 Use of scientitie calculator is permitted. 3. All questions are Compulsory. 4 Indicate clearly. the options you attempt along with its respective a 5 Use the last pa ‘of main supplementary for rough work. SECTION 1A. Give the output of following code. 1. print-( { (a,b) for ain cange(3) for bin range(a) | ) 2 a={1,"element’ ] bral] a.append("v") b.append(’") a(2}.append("abe") print (a) print () 3. print(‘abbaxyexzxabb'.coust ‘abb', -10,-1}) 2 4 dictionary = Google’: 1/’Microsoft': 3) dictionary2 = {‘Microsoft': 2, Youtube’ : 3) dictionary1.update(dictionary2}; for key, values in dictionary1items(); printikey, values) et(("test',"exam’,"rem’, practical") geset(("allow',"test®,"eval’,"rem'}) print (p.symmetric_diference(a)) 18 Write a program to find the prime numbers in a specific range using filter. 5 OR Q-18 Write python program to find Armstrong number in a specific range using map. Q-2 Answer the following questions. A Write a Python function that takes two lists and returns True if they have at least one common member. B Describe python garbage collection mechanism, 5 oR @2.A Explain memory management of python using an example. 5 Page 1 of 3o> 3A Q4a Write a python program to determine if @ sentence is a pangram or not. A pangram is a sentence using every letter of the alphabet at least once Answer the following questions Explain copy operation of list (with reference and without reference) Given a string 5, return a string where all occurences of its first char have been changed to, except do not change the first char itself. For example : google -gootle , Exam ~ Exam, bubble ~ bu**le oR \write python code to read a text file in python and do following: © print no. of lines ‘= print no. of statements © print no. of unique words Write python program to find total number of digits, total number of small alphabets and total number of capital alphabets from given string, SECTION ~11 Give the output of following code. X= "welcome to ldrp” print (x{8:2:-a)) print (x{-4::4)) f=(1,2,3) Ws(len (1)-3* 7) = (0) *3) print (I) pe impart functools Print (list filter (lambda x: x + 10,,range( 0, functools.reduce( lambda x,y: x *y, range(0.15})}) ) ) def increment_items(L, increment): ° while < lent} Ui] = Lf] + increment iste values = [1, 2,3) print (increment_items(values, 2}) print (values) 3,4, 5,31, (83, 6,1, 20) v= values(0}{0) for row in range(0,len(values)) for column in range(0, len{valuestrow])} itv < valuestrow}{column); v= values{row| {column} print(y) Page 20f3. 5 5 5ae 48 asa Q6A Write a Python program to find the three elements that sum to zero from alist. of nreal numbers, oR Create user defined functions named Armstrong and Fibonacci in one file. Use the functions in other file by importing the file. ‘Answer the following questions. \rite python program to find whether the given number is perfect ot not. s Note: Perfect number, a positive integer that is equal to the sum of its proper divisors, Ex. 6: 14243 Create class python with following attributes 5 Instance variables x, y.2 ‘© Instance methods get_value, print_value ‘© Static method set_value Parameterized constructor, destructor oR Write a Python program to find the list of elements which has lowest 5. occurrence ina lst Input =[2, 2,3, 4, 5,5,5,5,5,5,6,2,3, 6) ‘Output: [2,4] Explain types of arguments using an example. 5 Keyword Arguments Positional Arguments Default Arguments Arbitary Arguments Answer the following questions. Define a class which has at least two methods: 5 getString: to get a string from console input validateString: validate string for following criteria 1. Length of the string must be between 6 to 12. 2. String is palindrome or not Explain string indexing and slicing using an example. 5 oR To create customize exception for checking string length, if string length is ‘more than 6 or less than 2 then customize exception must be thrown, Explain the below mentioned function using an example: 1) discard!) 4) reversed) 2) any) 5) removel) 3) isdisjoint) Page 303Exam seat No: KADI SARVA VISHWAVIDHYALAYA. | GANDHINAGAR Semester_VI CE/TY Regular Examination May-2018 Subject Code:- CET 605-3 Subject Name:- Python Programming ‘Time:-10:30 a.m, to 1:30 pan. Marks:-.70 Instructions: ‘Answer each section in separate Answer sheet. All questions are Compulsory. Indicate clearly, the options you attempt along with its respective question number. ‘Use the last page of main supplementary of rough work. Section - I Q-1 Answer the following questions. .All compulsory) (A) How dictionary ean be ereat2d in python? Explain with example. 1) (B) WAP to Read a text file in python and do following: 6) [A print no, of lines B. print no, of statements C. print no. of unique words D. store cach word with its cocurence in dictionary (©) WAP Given alist, etur a st with the elements "shifted left by one (5) position” so (1, 2, 3] yields 12,3, 1] Example: 2,3) 3,1] 15,11, 9] + (11, 9,5) 17, 0,0} {0, 0,7) oR (©) WAPto Return the sum of tie numbers in the aray, returning 0 for an (3 ‘empty aray, Except the number 13 is very unlucky, s0it does not count and numbers that come immediately ater a 13 also do not count 0.2.2.) =6 tu (12,21, 13]=6 03,2,2,1, 13]=3 “aa4 a) @) Answer the following questions. (A) Write python program to remove duplicate values from list using user defined function, (B) Create class Idep with following attributes A. Class variable ent B. Instance variables x, y . Instance methods get_value, print_value 1D, Parameterized constructor, destructor OR (A) Explain string slicing using proper examples. (B) Explain Map() and Reduce() with examples Answer the following questions. (A) Explain the features of python. (B) What is Lambda Funetion? How can we use it? give example of it oR (A) _ Explain 5 different operations of SET( with proper example of each. (B) Explain S different operations of DICTIONARY() with proper example of cach ® Section — II Answer the following questions. (All compulsory) Give the output of following code AM=(1,2,34] pen |2.append(s) print 1,12 BA=[1,23] AE: (lea }-1 #2%(Teo( 1) +2) ] = [0] *3 print Give the output of following code 1. print filter(lambda x : x%2,range(-10,L1)) 2. pe set(("test","exam',"rem","practical"}) g=set({"allow", "test", "eval", "rem"}) print psymmetric_difference(a) 2s (5) 61 {5} (3) 13) (31 (31 (I 6]Explain the use of python in realtime applications. oR Explain the need of filter with an example. ‘Answer the following questions. (A) How to declare class and object in Python? (B) Explain module with suitable example. oR (A) _Explain the use of global variable using an example. (B) Give syntax and example of following set functions i. discardQ ii. clear() ii Issuperset() iv. intersection_update() v. difference() Answer the following questions. (A) _ Write python program to convert decimal number to binary using recursion, (B) Write a python program to print all prime mumbers in given interval oR (A) Write a python program to find factorial of number using recursion. (B) Write python program to print Fibonacci series using recursion, Bla i io} (5) (1 fo} 13 {5} (3) (3) (5ee KADI SARVA VISHWAVIDHYALAYA B.E. Semester VI CE 605-3 / IT 605-3 - PYTHON PROGRAMMING “to-l eee ‘TOTAL MARKS: 70 Instructions: 1 Answer each section in separate answer sheet. 2. Use of scientific calculator is permitted. 3. All questions are Compulsory. 4 Indicate clearly, the options you attempt along with its respective question number. 5 Use the last page of main supplementary for rough work. SECTION -I QIA_ Give the output of following code. 10 1 M=[1,2,3,4] R= I2.append(5) print Il, 2 2 I=[1,2,3] If: (len( 1)-1 )#2*(1en( 1) +2)]= [10] #3 ] print | 3 print filter(lambda x : x%2, range(-10,11)) 4 print 10.0/4 5. p=set({"test","exam',"rem","practical"}) q-set({"allow", "test", "eval", "rem"]) print p.symmetric_difference(q) Q1B Explain custom exception with the help of an example. 5 OR Q1B_ When you need ordered container of things,which will be manipulated,use lists? 5 Q2 Answer the following questions. ‘A. Explain the use of global variable using an example. 5 B_ Explain the need of reduce with an example, 5 OR A Write a python program to check that whether the given number is positive, 5 negative or zero. B_ Write a python program to generate reverse number of given number. 5 Q3. Answer the following questions. ‘A. How to declare class and object in Python? 5 B_ Write a python program to print all prime numbers in given interval. 5 OR A. Write a python program to demonstrate class, local and instance variable. 5 B_ Explain following set functions with its syntax and example: 5 i. capitalize) ii. rstripQ Page 1of2SECTION - 11 Q-4A_ Give the output of following code. 10 1 p=[aybie] q=[xy52] x2, y2 = zip(*zip(p, a) print x2 2. dif list=[[0]* 4 for iin range(2) ] print dif list 3 a=[1,"a",2,"b", "test", "exam" ] for af -1] in a: print a[-1] , 5 1=(,0,5),7,2) a,b,c,d=t print b[1] Q-4B_ Flatten anested list structure. 5 Example: if list =[1, 2,3], [4,5,[6,71]] then try to convert it in 1-dimensional 11, 2,3, 4, 5, 6, 7] OR Q-4B_ Write a python program to find factorial of number using recursion. 5 Q5_ Answer the following questions. A. Give syntax and example of following set functions: 5 i, discard) ii. clear() B_ Explain module with suitable example. 5 OR How dictionary can be created in python? 5 Write a python program to remove duplicate values using user defined function. 5 A B Q-6 Answer the following questions. A B Explain string slicing using proper examples. 5 Write python program to print Fibonacci series using recursion. 5 OR A Write python program to convert decimal number to binary using recursion, B_ Explain the features of python, 5 Page 2 of 2KADI SARVA VISHWAVIDHYALAYA B.E. Semester VI Examination — April — 2015 CE 505 / IT 505 ~ PYTHON PROGRAMMING, DATE: 06/08/2015, ‘TIME: 10.30 AM to 1.30 PM. TOTAL MARKS: 70 Instructions: | Answer each section in separate answer sheet. 2 Use of scientific calculator is permitted. 3. All questions are Compulsory. 3 4 Indicate elearly, the options you attempt along with its respective question number. 5 Use the last page of main supplementary for rough work. SECTION-1 QIA the output of following code. 0 1 mylist=[[(1, 2} (3, 411, C15, 61, (7, 811] print mylist{ 1] (0) [0], mylist{=1] [0] [0] 2 print type(map(lambda x : x+2, range(0,4))) 3 list=[(),L], None, ‘None’,} print list{-1)[1] 4 st = set([32, 23, 47, 67)) s2 = set([23, 47, 14, 26]) s3 = set([67, 90, 32, 47]) print set.intersection(sI, s3, 2) 5. from collections import deque queue ~ deque((1,2,3.4,5]) val = queue.popleft(); 3 print val I = queue. pop(); print val Q-1.B_ Explain concept of multiple inheritance and method overriding with an example. OR Q-1B List out the features of python. Q2_ Answer the following questions. A\ Give the syntax, use and example of Ijust() and title(). 5 B_ Give the syntax, use and example of difference() and symmetric_difference(). 5 OR A. Differentiate between instance method and static method with an example. 5 B_ Differentiate between instance variable, class variable and local variable with an 5 example. Page 1of3Q-3_ Answer the following questions. A. Suppose we have a list called list =[0.5, 45.6, [ [0.5, 34], 12], 45, (34, 45.6), 0]. 5 Process this list such that output list only contains unique items. (Hint: output=[0.5, 45.6, 34, 12, 45, 0)) B Demonstrate the concept of operator overloading with an example. 5 OR A What is the use of class method? How it can be declared and used in python 5 program? B_ What is the use of dictionary in python? What are the ways to define dictionary? 5 SECTION - II Q-4A Find out error(s) in the following code, if any and correct it. 10 1 tist=[1, 2, 3] listextend([4,5}) print list U1, 2,3] list.append(4,5) print list 3 data=([[ 1.21134] 0(5,61{7.81]] print dataf-t) [-1] [-1] 4 Pelambda X: X= 10 print F(10) Jal}, None, ‘None’,] print list{2][1] Q-4B Implement the concept of echo server and client using socket programming in 5 python OR Q-4B_ Implement the concept of time server and client using socket programming in 5 python. Answer the following questions. List out and explain ways of importing a module in a python file, 5 Explain the concept of default argument with an example. 5 OR >a > Write a python program to create customize exception for checking string length. If string length is more than 10 or less than 5 then customize exception must be thrown. B_ Explain filter() and reduce() with their syntax and example. s Page 2 of 3Q-6 Answer the following questions. A. Give output of the following. 1 (abe!) 2 print type(t) t('abe')) print type(t) 2 print filter(lambda x : (x92) == 0 , range(-5,6)) 3 tuple2 = (231,'ert’) tuple3 = tuple2 + (746,) int emp(tuple2,tuple3) B_ What is the use of getter and setter method? Define the ways to implement it. OR ‘A. Give syntax and example of following string functions: 5 i. stripQ ii. joind) B_ How the concept of constructor and destructor can be implemented in python? Page 3 of 3
You might also like
Computer Science Xi Paper PT-1 Hy PT-2 See
PDF
No ratings yet
Computer Science Xi Paper PT-1 Hy PT-2 See
14 pages
COMPUTER SCIENCE QUESTIONS WITH ANSWERS
PDF
No ratings yet
COMPUTER SCIENCE QUESTIONS WITH ANSWERS
8 pages
Computer Science - New (083) MARKING SCHEME - SQP (2019-20) Class-Xii
PDF
No ratings yet
Computer Science - New (083) MARKING SCHEME - SQP (2019-20) Class-Xii
14 pages
XI_AnnualExam_CS
PDF
No ratings yet
XI_AnnualExam_CS
6 pages
Python Question Bank Unit 3,4,5 With Solution
PDF
No ratings yet
Python Question Bank Unit 3,4,5 With Solution
76 pages
Revision Tour
PDF
No ratings yet
Revision Tour
7 pages
C12 Ans-Key 70m 1-10
PDF
No ratings yet
C12 Ans-Key 70m 1-10
8 pages
comp setA&B GB
PDF
No ratings yet
comp setA&B GB
14 pages
Python Question Paper 1
PDF
No ratings yet
Python Question Paper 1
9 pages
Python Assignment File Work
PDF
No ratings yet
Python Assignment File Work
24 pages
Python Lab Manual
PDF
No ratings yet
Python Lab Manual
22 pages
New Python
PDF
No ratings yet
New Python
41 pages
XI AnnualExam CS-coimbtore
PDF
No ratings yet
XI AnnualExam CS-coimbtore
8 pages
QB_Python_2024-25
PDF
No ratings yet
QB_Python_2024-25
5 pages
Python Programming Exercise
PDF
No ratings yet
Python Programming Exercise
7 pages
PRACTICE PAPER_6 WITH ANS
PDF
No ratings yet
PRACTICE PAPER_6 WITH ANS
4 pages
Ge Cs question paper
PDF
No ratings yet
Ge Cs question paper
8 pages
IT 2108 - Object Oriented Programming 1 - Python: You Can Upload The File
PDF
No ratings yet
IT 2108 - Object Oriented Programming 1 - Python: You Can Upload The File
14 pages
File 2 Cs Project
PDF
No ratings yet
File 2 Cs Project
20 pages
Xii CS 2020-21
PDF
No ratings yet
Xii CS 2020-21
5 pages
XII CS Holiday Homework
PDF
No ratings yet
XII CS Holiday Homework
5 pages
Python Interview Coding Questions-Ad
PDF
No ratings yet
Python Interview Coding Questions-Ad
6 pages
Question Bank ETE - 2023
PDF
No ratings yet
Question Bank ETE - 2023
7 pages
python IA 2
PDF
No ratings yet
python IA 2
3 pages
Question Paper Python Sem1 Krishna Gupta
PDF
No ratings yet
Question Paper Python Sem1 Krishna Gupta
7 pages
GR - Xi - CS - QP - Half Yearly
PDF
No ratings yet
GR - Xi - CS - QP - Half Yearly
6 pages
Class 11 CBSE Computer Science General Practical
PDF
No ratings yet
Class 11 CBSE Computer Science General Practical
15 pages
4CSM_PP_MSE1_QP_2024_25_Solutions
PDF
No ratings yet
4CSM_PP_MSE1_QP_2024_25_Solutions
9 pages
Computer Science_sr Centum Work Sheet
PDF
No ratings yet
Computer Science_sr Centum Work Sheet
19 pages
Exercise For Students
PDF
No ratings yet
Exercise For Students
54 pages
Unit 3 Previous Year Paper
PDF
No ratings yet
Unit 3 Previous Year Paper
4 pages
gaurisha_11
PDF
No ratings yet
gaurisha_11
23 pages
Aaryan Cs Practical Record
PDF
No ratings yet
Aaryan Cs Practical Record
51 pages
Xii CS 2ND One Third QP 16.10.24
PDF
No ratings yet
Xii CS 2ND One Third QP 16.10.24
6 pages
23 Python External Paper 2020-21 ODD
PDF
No ratings yet
23 Python External Paper 2020-21 ODD
4 pages
Sample Paper CS Class 12
PDF
No ratings yet
Sample Paper CS Class 12
12 pages
ComputerScience xi worksheet
PDF
No ratings yet
ComputerScience xi worksheet
6 pages
PYTHON
PDF
No ratings yet
PYTHON
23 pages
Python Lab File
PDF
No ratings yet
Python Lab File
19 pages
Python Lab File
PDF
No ratings yet
Python Lab File
19 pages
XII CS PractisePaper 4
PDF
No ratings yet
XII CS PractisePaper 4
12 pages
Comp QP
PDF
No ratings yet
Comp QP
6 pages
CS Half Yearly QP (Dav school)
PDF
No ratings yet
CS Half Yearly QP (Dav school)
8 pages
PDS Lab Manual - All
PDF
No ratings yet
PDS Lab Manual - All
54 pages
Xi QP Hy CS 231116 210839
PDF
No ratings yet
Xi QP Hy CS 231116 210839
7 pages
XI HY CS 22-23
PDF
No ratings yet
XI HY CS 22-23
5 pages
CS Practical
PDF
No ratings yet
CS Practical
74 pages
2021 ITT205
PDF
No ratings yet
2021 ITT205
10 pages
Oop With Python Lab
PDF
No ratings yet
Oop With Python Lab
48 pages
Gtavm t2 Hye C11a2 Cs SK
PDF
No ratings yet
Gtavm t2 Hye C11a2 Cs SK
7 pages
DB_11_CS_23-24
PDF
No ratings yet
DB_11_CS_23-24
13 pages
PYTHON MOST IMPORTANT QUESTIONS_a7c2fd50-ee09-4fad-a86a-9123ac1376d3
PDF
No ratings yet
PYTHON MOST IMPORTANT QUESTIONS_a7c2fd50-ee09-4fad-a86a-9123ac1376d3
4 pages
11 CS FOR MATHS-DEVANAND
PDF
No ratings yet
11 CS FOR MATHS-DEVANAND
10 pages
Revision Worksheet
PDF
No ratings yet
Revision Worksheet
6 pages
Computer Science Classxi Annual Exam
PDF
No ratings yet
Computer Science Classxi Annual Exam
5 pages
Python Assignment 4
PDF
No ratings yet
Python Assignment 4
5 pages
MCQ Fn&file
PDF
No ratings yet
MCQ Fn&file
8 pages
Final Recordhhhhh
PDF
No ratings yet
Final Recordhhhhh
19 pages
Grade 11 Sample Paper C SC MODEL PAPER
PDF
No ratings yet
Grade 11 Sample Paper C SC MODEL PAPER
7 pages
Related titles
Click to expand Related Titles
Carousel Previous
Carousel Next
Computer Science Xi Paper PT-1 Hy PT-2 See
PDF
Computer Science Xi Paper PT-1 Hy PT-2 See
COMPUTER SCIENCE QUESTIONS WITH ANSWERS
PDF
COMPUTER SCIENCE QUESTIONS WITH ANSWERS
Computer Science - New (083) MARKING SCHEME - SQP (2019-20) Class-Xii
PDF
Computer Science - New (083) MARKING SCHEME - SQP (2019-20) Class-Xii
XI_AnnualExam_CS
PDF
XI_AnnualExam_CS
Python Question Bank Unit 3,4,5 With Solution
PDF
Python Question Bank Unit 3,4,5 With Solution
Revision Tour
PDF
Revision Tour
C12 Ans-Key 70m 1-10
PDF
C12 Ans-Key 70m 1-10
comp setA&B GB
PDF
comp setA&B GB
Python Question Paper 1
PDF
Python Question Paper 1
Python Assignment File Work
PDF
Python Assignment File Work
Python Lab Manual
PDF
Python Lab Manual
New Python
PDF
New Python
XI AnnualExam CS-coimbtore
PDF
XI AnnualExam CS-coimbtore
QB_Python_2024-25
PDF
QB_Python_2024-25
Python Programming Exercise
PDF
Python Programming Exercise
PRACTICE PAPER_6 WITH ANS
PDF
PRACTICE PAPER_6 WITH ANS
Ge Cs question paper
PDF
Ge Cs question paper
IT 2108 - Object Oriented Programming 1 - Python: You Can Upload The File
PDF
IT 2108 - Object Oriented Programming 1 - Python: You Can Upload The File
File 2 Cs Project
PDF
File 2 Cs Project
Xii CS 2020-21
PDF
Xii CS 2020-21
XII CS Holiday Homework
PDF
XII CS Holiday Homework
Python Interview Coding Questions-Ad
PDF
Python Interview Coding Questions-Ad
Question Bank ETE - 2023
PDF
Question Bank ETE - 2023
python IA 2
PDF
python IA 2
Question Paper Python Sem1 Krishna Gupta
PDF
Question Paper Python Sem1 Krishna Gupta
GR - Xi - CS - QP - Half Yearly
PDF
GR - Xi - CS - QP - Half Yearly
Class 11 CBSE Computer Science General Practical
PDF
Class 11 CBSE Computer Science General Practical
4CSM_PP_MSE1_QP_2024_25_Solutions
PDF
4CSM_PP_MSE1_QP_2024_25_Solutions
Computer Science_sr Centum Work Sheet
PDF
Computer Science_sr Centum Work Sheet
Exercise For Students
PDF
Exercise For Students
Unit 3 Previous Year Paper
PDF
Unit 3 Previous Year Paper
gaurisha_11
PDF
gaurisha_11
Aaryan Cs Practical Record
PDF
Aaryan Cs Practical Record
Xii CS 2ND One Third QP 16.10.24
PDF
Xii CS 2ND One Third QP 16.10.24
23 Python External Paper 2020-21 ODD
PDF
23 Python External Paper 2020-21 ODD
Sample Paper CS Class 12
PDF
Sample Paper CS Class 12
ComputerScience xi worksheet
PDF
ComputerScience xi worksheet
PYTHON
PDF
PYTHON
Python Lab File
PDF
Python Lab File
Python Lab File
PDF
Python Lab File
XII CS PractisePaper 4
PDF
XII CS PractisePaper 4
Comp QP
PDF
Comp QP
CS Half Yearly QP (Dav school)
PDF
CS Half Yearly QP (Dav school)
PDS Lab Manual - All
PDF
PDS Lab Manual - All
Xi QP Hy CS 231116 210839
PDF
Xi QP Hy CS 231116 210839
XI HY CS 22-23
PDF
XI HY CS 22-23
CS Practical
PDF
CS Practical
2021 ITT205
PDF
2021 ITT205
Oop With Python Lab
PDF
Oop With Python Lab
Gtavm t2 Hye C11a2 Cs SK
PDF
Gtavm t2 Hye C11a2 Cs SK
DB_11_CS_23-24
PDF
DB_11_CS_23-24
PYTHON MOST IMPORTANT QUESTIONS_a7c2fd50-ee09-4fad-a86a-9123ac1376d3
PDF
PYTHON MOST IMPORTANT QUESTIONS_a7c2fd50-ee09-4fad-a86a-9123ac1376d3
11 CS FOR MATHS-DEVANAND
PDF
11 CS FOR MATHS-DEVANAND
Revision Worksheet
PDF
Revision Worksheet
Computer Science Classxi Annual Exam
PDF
Computer Science Classxi Annual Exam
Python Assignment 4
PDF
Python Assignment 4
MCQ Fn&file
PDF
MCQ Fn&file
Final Recordhhhhh
PDF
Final Recordhhhhh
Grade 11 Sample Paper C SC MODEL PAPER
PDF
Grade 11 Sample Paper C SC MODEL PAPER