0% found this document useful (0 votes)
13 views

XI CS MS Set1

Cs Sample paper

Uploaded by

rdxmt80
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
13 views

XI CS MS Set1

Cs Sample paper

Uploaded by

rdxmt80
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 4

केंद्रीय विद्यालय संगठन , कोलकाता संभाग

KENDRIYA VIDYALAYA SANGATHAN, KOLKATA REGION


संचयी परीक्षा / CUMULATIVE TEST - 2023-24
कक्षा / CLASS XI अधिकतम अंक / MAX MARKS. 70
विषय / SUB - CS (083) समय/ TIME: 03
घंटे/HRS

Q. NO QUESTION MARKS

SECTION A

1 False 1

2 c. -244.0 1

3 a. MS OFFICE 1

4 c. 1 = t 1

5 d. float 1

6 c. XOR 1

7 b.2two 1

8 c.i 1

9 b. ! 1

10 d. Hi#Bye% 1

11 c. [2,3] 1

12 a.XOR 1

13 c.1101 1

14 a. harasht 1

15 c.split() 1

16 b. Customised Application Software 1

17 c. Assertion is True Reason is False 1

18 a. Assertion and Reason both are True R is the correct explanation of A 1


SECTION B

19 (i) L.sort(reverse = True) 1+1=2

(ii) L.append(9)

20 GOOD 2

21 (i) [1,2,3,1,2,3] (ii) [1,2,3,5,6,7] 1x2=2

OR

(i) [10,14,22,30,34] (ii) [10,20,30]

22 To = 30 2
for K in range(0, To):
if K%4 == 0:
print(K*4)
else:
print(K + 3)
23 i. 0.25 GB 1x2=2

ii. 237 bytes

24 A’B + B’A 2

25 s = input(“Enter a string”) 2
t = ()
L = s.split()
for word in L:
t = t + (len(word),)
print(t)
SECTION C

26 i. 2+1 = 3

Control unit

Arithmetic Logic
Unit

Registers

Memory Unit

ii. Control Unit


27 i. (567) 8 =(177)16 1x3=3

ii. (100110)2 =(38)10

iii. (FB)16 =(11111011)2

28 S = input(“Enter a String”) 3
count_digit = 0
count_hash_dollar = 0
for ch in S:
if ch.isdigit():
count_digit += 1
elif ch in ‘#$’: #OR ch in [‘#’,’$’] OR (ch == ‘#’) or (ch == ‘$’)
count_hash_dollar += 1
print(‘No of Digits - ’, count_digit)
print(‘No of # or $ -’, count_hash_dollar)
29 n = int(input("Enter a number")) 3
for i in range(2, n//2+1):
if n % i ==0:
print("Not Prime")
break
else:
print("Prime")
30 2 3
8
2
SECTION D

31 (i) you can dream it, you can do it. 1x4 = 4

(ii) f you can dream it, you can do it

(iii) False

OR (iii) If you can dream it, you can do it.If you can dream it, you can do
it.

(iv) ['If', 'you', 'can', 'dream', 'it,', 'you', 'can', 'do', 'it.']

32 (i) (a) _main_ 1x4=4


(ii) (c) first_name
(iii) (d) Token
(iv) (a) (c) and (d)

SECTION E
33 (i) Statement 1: int(input(“Enter a Number”)). 1x5 = 5
(ii) Statement 2: range(2,num+1)
(iii) Statement 3: Fib[i-1]
(iv) Statement 4: a0 + a1
(v) Statement 5: append
34 i. IGITAL *NDIA23134 3+2 = 5

ii.

In
di
a
is
B
ea
ut
if
ul
35 i. print(L.count(10)) 1x5 =5
ii. max(L)
iii. print(sum(L))
iv. L.sort()
v. L.remove(50)

You might also like