Xi Computer Science QP Cae - Feb - Mar 2024
Xi Computer Science QP Cae - Feb - Mar 2024
Class: XI
Computer Science (083)
Maximum Marks: 70 Time Allowed:3 hours
--------------------------------------------------------------------------------
General Instructions:
1. Please check this question paper contains 35 questions.
2. This paper is divided into five sections-A, B, C, D and E.
3. Section A consist of 18 questions (1 to 18). Each question carries 1 mark.
4. Section B consist of 7 questions (19 to 25). Each question carries 2 marks.
5. Section C consist of 5 questions (26 to 30). Each question carries 3 marks.
6. Section D consist of 2 question (31 to 32). Each question carries 4 marks.
7. Section E consist of 3 questions (33 to 35). Each question carries 5 marks.
8. All programming questions are to be answered using Python Language only.
-1-
13) What is Flash Memory? 1
14) Evaluate the following expression and identify the correct answer:
16-(4+2)*5+2**3*4
(a)54 (b)46 (c)18 (d)32
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
word='green vegetables'
print(word.find('g',2))
print(word.find('tab',2,15))
Or
-3-
(a)Check if a string contains only alphabets
(b) Converts the first character to upper case
(c) Converts a string into lower case
Or
Consider the following tuples- tuple1 and tuple2:
tuple1 = (23,1,45,67,45,9,55,45)
tuple2 = (100,200)
Find the output of the following statements:
(a)print(tuple1 + tuple2)
(b) print(len(tuple1))
(c) print(sorted(tuple1))
27) Write a python program to print the sum of n integers in a list. 3
Or
s= “ interesting facts”
(a) print(s.upper())
(b) print(s.split(' '))
(c) print(s.replace(‘facts’, ‘idea’))
29) Write an algorithm and draw the flowchart to read a number and 3
print whether it is positive or negative integer.
Or
Write an algorithm and draw the flowchart to print the volume of a
cylinder.
30) Vikas has to make an online transaction through net banking. He 3
wants to make sure that he is opening the genuine bank website
and not some fake page. Write any three ways in which he can
identify if his connection to the banking website is secure.
SECTION D
31) What is an Error? Explain its types 4
34) Write a python program to Count and display the number of vowels, 5
consonants, uppercase, lowercase characters and digits in a string.
Or
Write a program to display the name of employees who earns more
than 25000 salary from the following dictionary.
Or
Identify the type of cyber-crime for the following situations:
(ii)Ms. Kavita complains that her debit/credit card is safe with her,
still somebody has done shopping /ATM transaction on this card.
(iv) Ravi received an email from First Generic Bank (as shown
below). On clicking the link, he was taken to a site designed to
imitate an official looking website. He uploaded some important
information on it.
*********************
-5-