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

Set 4 - QP

This document is a practice paper for Class XI Computer Science (083) for the session 2022-23, consisting of five sections with various types of questions including multiple choice, short answer, and programming tasks. It covers topics such as Python programming, data types, system software, and cybersecurity. The paper is designed to assess students' understanding and application of computer science concepts within a 3-hour time limit.

Uploaded by

mosespauline82
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
7 views5 pages

Set 4 - QP

This document is a practice paper for Class XI Computer Science (083) for the session 2022-23, consisting of five sections with various types of questions including multiple choice, short answer, and programming tasks. It covers topics such as Python programming, data types, system software, and cybersecurity. The paper is designed to assess students' understanding and application of computer science concepts within a 3-hour time limit.

Uploaded by

mosespauline82
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 5

Class: XI Session: 2022-23 Computer Science (083)

Practice Paper-4 (Theory)


Maximum Marks: 70 Time Allowed: 3
hours

General Instructions:
 This question paper contains five sections, Section A to E.
 All questions are compulsory.
 Section A have 18 questions carrying 01 mark each.
 Section B has 07 Very Short Answer type questions carrying 02 marks each.
 Section C has 05 Short Answer type questions carrying 03 marks each.
 Section D has 03 Long Answer type questions carrying 05 marks each.
 Section E has 02 questions carrying 04 marks each. One internal choice
is given in Q35 against part c only.
 All programming questions are to be answered using Python Language only.

SECTION A
MICR stands for?
(a)Maganetic Ink Character Reader (b) Maganetic Ink Code Reader
(c) Maganetic Ink Caser Reader (d) Maganetic Ink Computer Reader

Which of the following is not an example of system software?


(a) Language Translator (b)Utility Software
(c) Communication Software (d)Word Processors

A gate gives the output as 1 only if all the inputs signals are 1.
(a) AND (b) OR
(c)EXOR (d) NOR

Which one of the following is the correct extension of the Python file?
(a) .py (b) .python
(c) .p (d) None of these

Which of the following is not a keyword in Python language?


(a) for (b)if
(c) try (d) sum

Which of the following operators is the correct option for calculating ab ?


(a) a ^ b (b) a**b
(c) a ^ ^ b (d) a ^ * b

What is data type of L if L= [ 1,’Python’,2.5]


(a) List (b) String
(c)Dictionary (d) Tuple

Which of the following is an invalid statement?


(a) a,b,c = 1000 (b) a,b,c = 1000 2000 3000
(c) a,b,c = 1000, 2000, 3000 (d) a_b_c = 1000

Operators with the same precedence (except power operator) are evaluated inwhich
manner?
(a) Left to Right (b) Right to Left
(d) Can’t say (d) None of the mentioned

IT Act of the Indian Parliament notified on


(i) 17 January 2001 (ii) 25 October 2002
(iii)17 October 2000 (iv) 25 April 2000

What can happen when you give your personal data (email, address, photos
you post…) in exchange for free apps and services?

(i) Nothing can happen. Your data is not allowed to be passed on to anyone
(ii) It isn’t really used, it’s just compulsory to ask for that information
(iii) When giving your email you’re automatically entered in a lottery where you
can win something
(iv) Everything you do online is of value and is used by companies looking to
target their advertising

What is the most important activity in system hacking?


(i) Information gathering (ii) Cracking passwords
(iii) Escalating privileges (iv) Covering tracks

Find the output of the following


word=”green vegetables”
print(word.find(‘veg’,2)
(a) 8 (b) 6
(c)10 (d) 12

Does Python supports Exit-Controlled Loop?


(a) Yes (b) No
(c) May be (d) Don’t Know

Predict the output of the following code:


x,y=2,4
if(x+y= =10):
print(“true”)
else:
print(“false”)
(a) true (b)false (c) no output (d)none

What keyword you use to add an alternative condition to an if statement?


(a) else if (b) false (c) elif (d) None of the above

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

Choose correct option:


D1= {’A’:’CS’, ‘B’:’IP’}
D2= { ’B’:’IP’, ‘A’:’CS’}
A: Output of print (D1==D2) is True.
R: Dictionary is a collection of key-value pairs. It is not a sequence.
(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

Choose correct option:


S1=’python’
S1[0] =S1[0].upper( )
A: Above code will generate error.
R: String is mutable by nature.
(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

SECTION B

What will be the output of the following Python code? >


>>>a,b=6,7
>>>a,b=b,a
>>>a,b
a) (6,7) b) Invalid syntax c) (7,6) d) Nothing is printed

What is the data type of (1)?

a) Tuple b) Integer c) List d) Both tuple and integer

OR

What will be the output of the following Python code?


>> a=(1,2)
>>> b=(3,4)
>>> c=a+b
>>> c

(a) (4,6) (b) (1,2,3,4 )


(c) Error as tuples are immutable (d) None

Given is a Python string declaration:


(a) myexam="@@CBSE Examination 2022@@"

Write the output of: print(myexam[6:12])


(b) Write the output of the code given below:
my_dict = {"name": "Aman", "age": 26}
my_dict['age'] = 27
my_dict['address'] = "Delhi"
print(my_dict.items())

Define the term:


(a) Cyber bullying
(b) Cyber Stalking

What measures should one take to avoid and maintain confidentiality of


personal information?

Predict the output of the Python code given below:def


Vari(C1,C2):
if C1>C2:
return C1-C2
else:
return C2-C1

NUMBER= [15,12,19,26,18]
for CNT in range (3,0,-1):
A=NUMBER[CNT]
B=NUMBER[CNT-1]
print(Vari(A,B),'#', end=' ')

OR

Predict the output of the Python code given below:

KV = (11, 22, 33, 44, 55 ,66)


NVS =list(KV)new_list = []
for i in KV:
if i%2==0:
new_list.append(i)
new_tuple = tuple(new_list)
print(new_tuple)

Write a program to check a number whether it is even or odd. ?

SECTION C
Write the truth table for given Boolean expression:
𝐸 = 𝐸. 𝐸(𝐸. 𝐸 + 𝐸¯)

Find the error in the following code:


(a) y = x +5 (b) a=input(“Value: “) (c) print(x = y = 5)
print(x, y) b = a/2
print( a, b)
Write a program to input temperature in Celsius and convert it into
Fahrenheit using the formula: F = C * 9 / 5 + 32

Write a program to input names of n students and store them in a tuple.


Also, input a name from the user and find if this student is present in the
tuple or not.

What are common gender and disability issues faced while teaching /
using computers in class rooms.
SECTION D

Write a program to calculate digits and letters in a string.


Convert the following number system.
( 10011111 )2 = ( ? )16 = ( ? )10 = ( ? )8

SECTION E
Mr. Rajesh Kumar is a teacher in a school. He is doing his work manually.
As a python learner solve the problems of Rajesh Kumar by python programs:

(i) Create a dictionary student which ask Student roll number, Name and Marks of
students and display them in tabular format.
(ii) Display the names of those students who have secured marks more than 75.
(iii) Delete those students who have secured less than 50 marks

Write the solution for the following problem:


(a) How is math. ceil (89.7) different from math. floor (89.7)?
(b) Write a Python program to generate random number between 0 and 9.

Explain the following:

(a)What are cookies? How are they used by websites to track you?
(b)What is confidentiality of information? How do you ensure it
(c)What procedure can be carried out for proper E-Waste disposal.

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

You might also like