Comp - SC QS Xi
Comp - SC QS Xi
CLASS-XI
SUB: COMPUTER SCIENCE (083)
SECTION-A
1. Which RAM needs to be refreshed periodically ? 1
(a) DRAM (b)Mask (c) Flash (d) SRAM
2. Which of the following is a mutable type in Python ? 1
(a) String (b)Tuple (c) Dictionary (d) None of these
3. How many ends of a condition box is opened in a flowchart? 1
(a) 1 (b)2 (c) 3 (d) 4
4. Which of the following is a System Software? 1
(a) MS-Word (b) Google Chrome (c)Linux (d) K7 Anti virus
5. The decimal equivalent of octal number (173)8 is ________ 1
(a) 123 (b)731 (c)529(d) 124
6. In algorithms, loops are used for ? 1
Page 1 of 6
COMP.SC-XI
(a) Conditions (b) Continuous assignment
(c) Iteration (d) Both a and c
7. Consider the following algorithm and determine how many times the loop 1
is iterated?
Step 1. i=0
Step 2. while i<=5 repeat
Step 3. i = i + 1
Step 4. endwhile
(a) 6 (b) 5 (c) 0 (d) infinite times
8. Dual of Boolean expression (X+Y’)(X+Y)is : - 1
(a) XY’+X’Y (b) X+Y’.X+Y (c) XY+XY (d) XY’+XY
9. X + X’ = _______ 1
a) XX’ (b)X (c) 0 (d) 1
10. Python works in two modes. Interactive mode and __________ mode? 1
a) OS (b) Script (c) Print (d) Prompt
11. Predict the output : 1
L=[1,2,3,7,9]
L[2]=L[3]
print(L[-3])
(a) 3 (b) [1,2,3] (c) 1 (d) 7
Buffer is nothing but
12. (a) RAM (b)Temporary memory
(c) Register (d) ROM 1
13. Predict the output : 1
P=(11,22,33,44,55)
Q=len(P)
print(Q)
(a) 22 (b) 33 (c) 5 (d) 4
14. Evaluate the following expression and identify the correct answer ? 1
(16-(4+2))*5 + (2**3)*4
(a) 82 (b) 18 (c) 18 (d) 102
15. Given Python declaration S=‘Hello World’. Which of the following 1
statement will execute without showing an error ?
(a) print(S[11]) (b) S=”Welcome” (c) S[2]=”L” (d)S[2]= ‘yy’
OR
32 Write a program to input two integers as X and N, and print the following 4
series along with their sum.
Write a program to print the first N prime numbers starting from N, where
N is to be entered by the user.
SECTION-D
33. Case study based questions: 5
Prasant has purchased a new computer and smart phone. The smart phone
is well equipped with all the latest features. His sister has to attend online
classes and therefore he offers his smartphone to her attending the online
classes.
They often receive many notes online and they need to submit many
assignments. His assignment file size is quite large and he need to reduce
Page 4 of 6
COMP.SC-XI
it . Every time file size is quite large and he need to reduce it . Every time
his PC/mobile shows some problem he boots his PC again .
35. (a) Rewrite the following code fragment using while loop : 5
for i in range (7, -6, -4):
print(i)
print("Done")
Page 5 of 6
COMP.SC-XI
while k<10:
print(k, end=' ')
k+=2
print()
for p in range (0,10,2):
print(p+2, end=' ')
print()
if p==k:
print("Yes")
else:
print("No")
Page 6 of 6
COMP.SC-XI