0% found this document useful (0 votes)
23 views3 pages

Set 4 - Ak

This document is the answer key for Practice Paper 4 in Computer Science for Class XI, covering various topics including programming concepts, cybersecurity, and data handling. It includes answers to multiple choice questions, coding exercises, and definitions related to computer science. The key provides a comprehensive overview of the expected answers for the academic year 2022-23.

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)
23 views3 pages

Set 4 - Ak

This document is the answer key for Practice Paper 4 in Computer Science for Class XI, covering various topics including programming concepts, cybersecurity, and data handling. It includes answers to multiple choice questions, coding exercises, and definitions related to computer science. The key provides a comprehensive overview of the expected answers for the academic year 2022-23.

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/ 3

Practice Paper 4 Answer Key (2022-23)

Computer Science (083) Class: XI


Q Section-A (attempt 8 out of 10) Mark
No. s
1. Magnetic Ink Character Reader (1)
2. Word Processors (1)
3. AND (1)
4. .py (1)
5. Sum (1)
6. a**b (1)
7. List (1)
8. a,b,c= 1000 2000 3000 (1)
9. Left to Right (1)
10. 17 October 2000 (1)
11. Everything you do online is of value and is used by companies looking to (1)
target their advertising
12. Cracking passwords (1)
13. 8 (1)
14. Yes (1)
15. False (1)
16. Elif (1)
17. Both A and R are true and R is the correct explanation for A (1)
18. A is True but R is False (1)
19. (7,6) (2)
20. Integer (2)
Or
(1,2,3,4 )
21. Exami (2)
Or
dict_items([('name', 'Aman'), ('age', 27), ('address', 'Delhi')])
22. Cyber Bullying: use of internet to harm or frighten another person, (2)
especially by sending them unpleasant messages.
Cyber Stalking: Follow the target online by joining the same groups and
forums. Send threatening, controlling, or lewd messages or emails to the
target
23. Restrict access to data. ...Encrypt your data .... Implement a confidentiality (2)
policy. ...Implement a data retention policy. ...
Develop and implement a cybersecurity program .... Take physical security
measures .... Non-disclosure agreements.

24. 7#7#3# (2)


Or
(22,44,66)
25. num=int(input(“Enter a Number”)) (2)
if ( num% 2)==0:
print(“Even Number”)
else:
print(“Odd Number”)
26. X Y Z X YZ (YZ+Z XY(YZ+ (3)
Y ) Z)
0 0 0 0 0 0 0
0 0 1 0 0 1 0
0 1 0 0 0 0 0
0 1 1 0 1 1 0
1 0 0 0 0 0 0
1 0 1 0 0 1 0
1 1 0 1 0 0 0
1 1 1 1 1 1 1
27. (a) x is not defined (3)

(b) unsupported operand type(s) for /: 'str' and 'int'

(c) invalid syntax


28. celsius = float(input("Enter temperature in celsius: ")) (3)
fahrenheit = (celsius * 9/5) + 32
print('%.2f Celsius is: %0.2f Fahrenheit' %(celsius, fahrenheit))
29. n = int(input("Enter the number of students: ")) (3)
list1 = [ ]
for i in range(n):
name = input()
[Link](name)
tuple1 = tuple(list1)
findName = input("Enter name to find: ")
for item in tuple1:
if item==findName:
print("Name found")
else:
print("Name not found")
30. there can be one or more disabilities: (3)
(i) Locomotor disabilities – Severe deformities, polio, leprosy, cerebral palsy.
(ii) Hearing and speech disabilities – Hearing impairment, speech aphasia.
(iii) Cognitive impairment – Specific learning deficits (Dyslexia, Dyscalculia).
Down’s syndrome, Autism.
(iv) Vision impairment. low vision, blindness.
31. String =”python1234” (4)
total_digits = 0
total_letters = 0
for s in string:
if [Link]():
total_digits += 1
else:
total_letters += 1
print(“Total Letters found :-“,total_letters)
print(“total digits found:-“,total_digits)
32. 9F16=15910=2378 (4)
33. (i) (5)
n = int(input("Enter number of students: "))
result = {}
for i in range(n):
print("Enter Details of student No.", i+1)
rno = int(input("Roll No: "))
name = input("Name: ")
marks = int(input("Marks: "))
result[rno] = [name, marks]
print(result)
(ii)
for student in result:
if result[student][1] > 75:
print(result[student][0])
(iii)
for student in result:
if result[student][1] < 50:
del result[student][0])
34. (a) math. ceil(89.7)' will return 90 whereas 'math. floor(89.7)' will return (5)
89.

(b) import random


for i in range(10):

print([Link](10))
35. (a) Cookies are text files with small pieces of data that are used to (5)
identify your computer as you use a computer network. Specific cookies
known as HTTP cookies are used to identify specific users and improve
your web browsing experience.

(b) Data confidentiality is about protecting data against unintentional, unlawful,


or unauthorized access, disclosure, or [Link] can ensure it by Shared
documents in a secure way,Use anti-virus software, Install a firewall,
Password-protect important files and systems. ...
(c)
Recycling: complete segregation of parts and materials that is then used to
build new electronic products.
Refurbishing: reuse of the working, good quality products to replace parts and
extend the life of other electronic equipment.
Land filling. This is the most common method of electronic waste
disposal. ...
Incineration. A controlled combustion process wherein e-waste is burned
in an incinerator unit.

You might also like