0% found this document useful (0 votes)
112 views5 pages

Xi Computer Science QP Cae - Feb - Mar 2024

Uploaded by

gsss lapathy
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
Download as docx, pdf, or txt
0% found this document useful (0 votes)
112 views5 pages

Xi Computer Science QP Cae - Feb - Mar 2024

Uploaded by

gsss lapathy
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1/ 5

CENTRALIZED EXAMINATION FEB-MARCH 2023-24

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.

S.No. Questions Marks


SECTION A
1) Find the invalid identifier from the following: 1
(a)While (b)for (c)None (d)true
2) Given a Tuple tup1= (10, 20, 30, 40, 50, 60, 70, 80, 90). What will 1
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)
3) Write any two benefits of e-waste Recycling. 1
4) Which function out of the following will return the data type of the 1
object:
(a) type() (b) id() (c) ord() (d) str()
5) Predict the output: 1
>>> list1=[21,11,20,18,3,54,18,1,11,18]
>>> list1.index(18) //output1
>>>list1.append(list1.count(18))
>>>list1 //output2
6) Name the input device used to read digital fingerprint ? 1
7) ___________ is called as the process of step by step task performed 1
on a given work.
(a)Coding (b)Algorithm (c)Testing (d)Analyse the problem
8) _________ is the extension of a python program. 1
9) Name the gate which is referred as Inverter. 1
10) Choose the name of the process in which someone's intellectual 1
work is stolen by someone and represented as its own.
(a) Copying (b)Plagiarism (c) Copy and paste (d)Intellectual steal
11) Which of the following will delete key-value pair for key = “Red” from 1
a dictionary D1?
(a) delete D1("Red") (b) del D1["Red"]
(c) del.D1["Red"] (d) D1.del["Red"]
12) Consider the statements given below and then choose the correct
output from the given options:
>>> text="ITF 2023-24"
>>> print(text[-2:2:-2])
(a) 240 (b)202 (c)-232 (d)230

-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

15) Function range(0, 5, 2) will yield on iteration sequence like: 1


(a) [0, 2, 4] (b) [1, 3, 5] (c) [0, 1, 2, 5] (d) [0, 5, 2]

16) Which of the following statement(s) would give an error during 1


execution of the following code?

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

(a) Statement 1 (b) Statement 2 (c) Statement 3 (d) Statement 4


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): 1
Data submitted online intentionally known as active digital foot print.
Reason(R): Active digital footprints includes the work done in Ms-
Powerpoint, Ms-Excel, Photoshop.
18) Assertion(A): Python supports multiple execution modes. 1
Reason(R): Interactive mode allows the user to enter and execute
one statement at a time, while script mode allows the user to run a
file containing multiple statements.
SECTION B
19) Write the output: ii) x=7 2
if x>3:
i) num1, num2 = 2, 6 if x>4:
num1, num2 = num2, num1 + 2 print('A',end="")
print (num1, num2) else:
print('B',end="")
else:
print('C',end="")
20) Draw logical circuit for the following equation: 2
Y=(AB)’ + C’
Or
Convert the following numbers system
(i) (25)10 = ( ?)2
(ii) (110110101 )2 =( ?)8
21) Rao has written a code to input a number and check whether it 2
-2-
is prime or not. His code is having errors. Rewrite the correct
code and underline the corrections made.

A=int(input("Enter any number:’))


Ar=0
for x in range(0,A,2)
Ar+=x
if x%2=0:
Print(x*10)
else:
print('C')
print(Ar)
22) Find the output of the following: 2

word='green vegetables'
print(word.find('g',2))
print(word.find('tab',2,15))
Or

What will be the output produced by following code fragment?


x, y= 20, 60
y, x, y= x, y-10, x+10
print (x, y)

23) What will be the value of following code: 2


(i)print(17%3)
(ii)print(21//6)
Or
i)Which character is used in Python to make a single line
comment?
a) / b) // c) # d) !

ii)Name the module to which the following built in function


belong:
(a)ceil() (b)randint()
24) Convert the following for loop code in to while loop: 2

for x in range (1,100,2):


print(x)
25) L= [11,34,56,23,67,78] is a list in python 2
(i)Write a python statement to remove 78 from the list.
(ii) Write a python statement to insert 89 after 23 in the given
list.
Or
A tuple 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 common age value
from the given tuple.
SECTION C
26) Name the function/method required to : 3

-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

Write a program to find the average of n integers in a list.


Example: L=[2,6,7,8,9,10]

Output: Average of the numbers is : 7.0


28) Write the output for the following statements on the given string: 3

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

32) Define etiquettes. Explain briefly Net etiquettes, Communication 4


etiquettes, Social Media etiquettes.
SECTION E
33) i)Which of the following are hardware and software? 1+1+3
(a) Capacitor (b) Internet Explorer (c) Hard disk =5
(d) UNIX

ii) Write any one DeMorgan’s Law statement.

iii) Name the input or output device used to do the following:


a) To make hard copy of a text file
-4-
b)To enter audio-based command
c)To read the bank Cheques

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.

emp={1:('Amit',26000),2: ('Suman', 12000), 3:('Ravi',36000)}


35) What you should do while using social media? Write any five points. 5

Or
Identify the type of cyber-crime for the following situations:

(i) Sabhya quickly downloads a 2-minute clip from the internet


explaining the concept of dictionary in Python. Using video editor,
he adds the text “Prepared by Sabhya” in the downloaded video clip.
He then emails the modified video clip to Ahaana. This act of
Sabhya is an example of:
(a) Fair use (b) Hacking (c) Copyright infringement (d) Cybercrime

(ii)Ms. Kavita complains that her debit/credit card is safe with her,
still somebody has done shopping /ATM transaction on this card.

(iii) A person complains that somebody has created a fake profile of


Facebook and defaming his/her character with abusive comments
and pictures.

(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.

(v) After a fight with your friend, You created an embarrassing


picture of your friend and uploaded and threatens him/her.

*********************

-5-

You might also like