Class 11 CS QP See P
Class 11 CS QP See P
General Instructions
1. This question paper has 4 pages.
2. This question paper contains five sections, Section A to E.
3. All questions are compulsory.
4. Section A has 18 questions carrying 01 mark each.
5. Section B has 07 Very Short Answer questions carrying 02 marks each.
6. Section C has 05 Short Answer type questions carrying 03 marks each.
7. Section D has 03 Long Answer type questions carrying 05 marks each.
8. Section E has 02 questions carrying 04 marks each.
9. All programming questions are to be answered in Python Language only.
7 Special meaning words of Python, fixed for specific functionality are called
a) Identifiers b) functions c)keywords d) literals
8 The lines beginning with certain character, and which are ignored by a compiler and not
executed are called
a) Operators b) operands c) functions d) comments
9 What is the value of expression 100//25
a) 4 b) 4.0 c) 2.5 d) none of the above
10 What will be the value of y after following code fragment is executed?
x=10.0
y=(x<100.0) and x>=10
a) 110 b) True c) False d) Error
11 What is the output when the following code is executed?
x=1
while(x<=5):
x+1
print(x)
a) 6 b) 1 c) 5 d) infinite
12 Which of the following functions will return the last three characters of a string s?
a) s[3:] b) s[:3] c) s[-3:] d) s[:-3]
13 Which of the following will create an empty list?
a) L=[] b) list(0) c) L=list() d) L=List(empty)
14 Which of the following will not create a single element tuple?
a) (1,) b) (1) c) ([1]) d) tuple([1])
15 Dictionaries are _____ data types of Python
a) Mutable b) immutable c) simple d) all the above
16 Which of the following are jump statements?
a) if b) break c) while d) for
17 and 18 are ASSERTION AND REASONING based questions. Mark the correct
choice as
A. Both (A) and (R) are true and (R) is the correct explanation (A)
B. Both (A) and (R) are true and R is not the correct explanation (A)
C. (A) is True but (R) is False
D. (A) is false but (R) is True
Assertion (A): Data submitted online intentionally known as active digitalfoot print.
17
Reasoning(R): Active digital footprints include emails, replies, comments or posts made
on different websites or apps.
18 Assertion (A): Python lists allows to modify their elements by indexes easily.
b. String repetition
c. String Membership
OR
31 How to dispose E-Waste and What are the benefits of E-waste management.
OR
Write a menu driven program to do the arithmetic operations (*,/,+,-)