Marking Scheme SET B1/B2
MIDTERM EXAM 2024-25
Class XI COMPUTER SCIENCE
Set B1 Set B2
Q.No Q.No Solution Marks
False 1
1 3
d) is 1
2 2
1
3 1 a) 39
b) Type Error 1
4 4
d)200 1
5 5
a)Hi#Manoj!#Good Morning 1
6 6
d) range(0,-10,-2) 1
7 7
c) x=y=z=33 1
8 9
c) 210 1
9 8
12 d) None 1
10
11 a) 10 12 14 16 1
11
10 d) None 1
12
13 b)1000 1
13
15 c)list 1
14
14 a) lower case 1
15
16 d)RAM 1
16
18 (a) Both A and R are true and R is not the correct 1
17
explanation for A
17 (a) A is True but R is False 1
18
22 Secondary storage is necessary because memory, or 2
19
primary storage, loses its data when a computer is
turned off whereas secondary storage does not.
Therefore, it is commonly known as non-volatile
storage. The data on it stays there until it is deleted
or overwritten by the user.
20 Those computer software that control and monitor the 2
20
computer hardware and provide essential
functionality to the computer are called system
software.
Application software is a type of computer program
that performs a specific personal, educational, and
business function.
21 Memory Management 2
21
Process Management
19 201.74 2
22
26 111000111.101 2
23
24 ASCII and UNICODE are the two most extensively 2
24
used character encoding schemes in computer
systems. The most basic difference between ASCII
and UNICODE is that ASCII is used to represent text
in form of symbols, numbers, and character, whereas
UNICODE is used to exchange, process, and store
text data in any language
25
25
23
26
27 P.Q’+P.R’
27
30 92
28
29 MachineMachineMachine 129
29
28 5
30
32
31 number=int(“Enter value :”)
for in range [0,11] :
if number or i:
print (number+i)
else :
Print number-i
31 n=10 2
32
for i in range(n,0,-1):
if n>3:
continue
print(“Current value:”,n)
33 %0 2
33
%1
%2
%3
%4
%5
34 number += 2 2
34
while number =< 5 :
While number % 2 == 0:
print("The number "+str(number)+" is
even")
Break
number+=1
35 2 2
35
12
22
36
38 Anything is said to be mutable when anything can 3
36
be modified or changed. The term "mutable" in
Python refers to an object's capacity to modify its
values.
Immutable refers to a state in which no change
can occur over time. A Python object is referred
to as immutable if we cannot change its value
over time.
37 ch=input(“Enter the character :”) 3
37
if (ch >= 'A' && ch <= 'Z')
print(“UpperCase character”)
else if (ch >= 'a' && ch <= 'z')
print(“Lowercase character”)
elif (ch>’0’ and ch<=’9’):
print(“Digit”)
else:
print(“Special Charater”)
36 name=input(“Enter the bank name :”) 3
38
P=int(input(“Enter the principal amount :”))
T=int(input(“Enter the tenure in months:))
if name==”Punjab and Sind Bank”:
R=7
elif name==”Central Bank of India” or
name==”Bank of Baroda”:
R=7.25
else:
R=7.30
EMI=(P*R*(1+R)T)/((1+R)**T)-1)
print(“EMI calculated :”,EMI)
41 num=int(input(“Enter the number”)) 3
39
digit=0
ev=0,odd=0
while(num>0)
digit=num%10
if(digit%2!=0):
odd=odd+digit;
else:
ev=ev+digit;
num=num/10
print(“Sum of even digits :” ,ev)
print(“Sum of odd digits :” ,ev)
40 rows = 5 3
40
i=1
while i <= rows:
j=1
while j <= i:
print((i * 2 - 1), end=" ")
j=j+1
i=i+1
print('')
39 x=int(input(“Enter the value of x :”)) 3
41
n= int(input(“Enter the value of n :”))
s=0
for i in range(1,n+1):
term=(1+x**i)**i
s=s+term
print(Sum of series : ”,s)