Class XI Sample Exam Paper CS
Class XI Sample Exam Paper CS
Class: XI
Session: 2023-24
Computer Science (083)
General Instructions:
Please check this question paper contains 35 questions.
The paper is divided into 5 Sections- A, B, C, D and E.
Section A, consists of 18 questions (1 to 18). Each question carries 1 Mark.
Section B, consists of 7 questions (19 to 25). Each question carries 2 Marks.
Section C, consists of 5 questions (26 to 30). Each question carries 3 Marks.
Section D, consists of 2 questions (31 to 32). Each question carries 4 Marks.
Section E, consists of 3 questions (33 to 35). Each question carries 5 Marks.
All programming questions are to be answered using Python Language only.
6 Given a Tuple tup1= (10, 20, 30, 40, 50, 60, 70, 80, 90). 1
What will be the output of print (tup1 [3:7:2])?
a. (40,50,60,70,80) b. (40,50,60,70) c. [40,60] d. (40,60)
1
8 Which of the following operator cannot be used with string data 1
type?
a. + b. in c. * d. /
tup = (20,30,40,50,80,79)
print(tup) #Statement 1
print(tup[3]+50) #Statement 2
print(max(tup)) #Statement 3
tup[4]=80 #Statement 4
15 It is a type of extortion virus that locks your computer and refuses to let 1
you access information unless you pay some amount.
a. Trojan Horse b. Spyware c. Ransom ware d. Adware
16 Select the correct output of the code: 1
s="Python is fun"
l=s.split()
s_new="-“.join([l[0].upper(),l[1],l[2].capitalize()])
print(s_new)
a. PYTHON-IS-Fun b. PYTHON-is-Fun
c. Python-is-fun d. PYTHON-Is -Fun
Q17 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 for A
(b) Both A and R are true and R is not the correct explanation for A
(c) A is True but R is False
(d) A is false but R is True
17 Assertion (A): Disposal of e-waste is an emerging global 1
environmental and public health issue, as this waste has become the
most rapidly growing segment.
Reasoning (R): The emission of fumes, gases and particulate matter in
to the air, the discharge of liquid waste in to water and drainage system,
and the disposal of hazardous waste contribute to environmental
degradation.
18 Assertion(A): List is an immutable data type 1
Reasoning(R): When an attempt is made to update the value of an
Immutable variable, the old variable is destroyed and a new variable is
created by the same name in memory.
Q No. Questions Marks
Section-B (14 Marks)
19 List any two guidelines to avoid plagiarism. 2
OR
Explain the need of protecting intellectual rights.
20 Rewrite the following code in Python after removing all the syntax 2
errors. Underline each correction done in the code.
num1, num2 = 10, 45
While num1 % num2 ==0
num1+= 20
num2+= 30
Else:
print('hello')
OR
Write a Python program to accept a number from the user
and calculate its square root. Also find the ceil and floor
value of the result.
21 Study the following program and select the possible output(s) from the 2
options (i) to (iv) following it. Also, write the maximum and the
minimum values that can be assigned to the variable Y.
import random
X=random.random( )
Y=random.randint(0,4)
print(int(X), “:”, Y+int(X))
23 Write a suitable Python statement for each of the following tasks using 2
built-in functions/methods only:
i. To delete an element “Mumbai: 50” from Dictionary D.
ii. To display words in a string S in the form of a list
OR
Write a Python Program to display alternate characters of a string my_str.
For example, if my_str = "Computer Science" The output should be
Cmue cec
24 Write the Python statement for each of the following tasks using 2
BUILT-IN functions/methods only:
(i) To insert an element 200 at the third position, in the list L1.
(ii) To check whether a string named, message ends with a full stop /
period or not.
OR
A list named StudentAge stores age of students of a class. Write the
Python command to import the required module and (using built-in
function) to display the most average age value from the given list.
25 Write a Program in Python that traverse the dictionary, PLACES and 2
displays the names in uppercase of the places whose names are longer
than 5 characters.
30 Define Digital Footprints. What are the two types of Digital Footprints? 3
Write two positive and two negative implications of Digital Footprints.
Q No Questions (Case Study Based) Marks
Section-D (8 Marks)
31 ICT has the ability to empower both teachers and students. Teacher can 4
create groups and teams for assignment and project work so that every
girl and boy student has equal opportunity, access to resources and a
common platform to collaborate and share their work. In the context of
ICT, gender is a significant issue. Girls and boys use computing
technology in different ways depending on their confidence levels,
preferences, and attitudes. According to certain studies, boys utilize ICT
for educational purposes more than girls in senior secondary school.
When it comes to boy‟s and girl‟s opinions regarding ICT in primary
school, girls value their ability to work but boys are more concerned with
plying games or having limited access to machine.
a) What are the various gender related issues, faced by a teacher while
teaching computer?
b) Why boys utilize ICT for educational purposes more than girls in
senior secondary school?
c) “In primary school, girls value their ability to work but boys are
more concerned with plying games or having limited access to
machine”. What is your opinion about this statement?
d) According to you, what should be the various strategies to solve
gender related issues while teaching computer?
32 Consider the following code and answer the questions that follow: 4
Book={1:'Thriller', 2:'Mystery', 3:'Crime', 4:'Children Stories'}
Library ={'5':'Madras Diaries','6':'Malgudi Days'}