Marking Scheme
Marking Scheme
HYDERABAD REGION
SESSION ENDING EXAMINATION 2023-24
CLASS-XI SUBJECT- COMPUTER SCIENCE (083)
MAXIMUM MARKS – 70 TIME- 3 Hours
(MARKING SCHEME)
General Instructions:
SECTION B
Colours.extend([“white”,”pink”])
>>>colours
[“red”, “ green”, “blue”,”yellow”, “white”, “pink”]
23 (i) 2 2
(ii) (23, 1, 45, 67, 45, 9, 55, 45, 100, 200)
(iii) 300
(iv) 3
24 2
SECTION C
26 Write a program to print given number is EVEN or ODD. 3
OR
Write a Python program that accepts two integers from the user and
prints a message saying if first number is divisible by second number or
if it is not?
x=int(input(“enter first number”))
y=int(input(“enter second number”))
if(X%Y ==0):
print(x, “is divisible by”,y)
else :
print(x,”is not divisible by “ , y)
OR
SECTION D
31 import random 4
num1 = random.randint(500,760)
num2 = random.randint(500,760)
avg = (num1 + num2)/2
print("Number 1 : ", num1)
print("Number 2 : ", num2)
print("Average : ", avg)
32 i) Net Etiquettes refers to the proper manners and behaviour we need to 2+2=4
exhibit while being online. These include :
1. No copyright violation: we should not use copyrighted materials
without the permission of the creator or owner. We should give proper
credit to owners/creators of open source content when using them.
2. Avoid cyber bullying: Avoid any insulting, degrading or intimidating
online behaviour like repeated posting of rumours, giving threats online,
posting the victim’s personal information, or comments aimed to publicly
ridicule a victim.
SECTION E
33 n = int(input("Enter the number of rows")) 5
# outer loop to handle number of rows
for i in range(0, n):
for j in range(0, i + 1):
print("* ", end="")
# ending line after each row
print()