0% found this document useful (0 votes)
20 views

FINAL TERM PAPER OF CLASS XIth Computer Science(083)

Uploaded by

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

FINAL TERM PAPER OF CLASS XIth Computer Science(083)

Uploaded by

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

BOSTON PUBLIC SCHOOL, AGRA

FINAL TERM EXAMINATION (2024-25)


CLASS: XI
SUB: COMPUTER SCIENCE (083)
TIME: 3HRS. MM:70
--------------------------------------------------------------------------------------------------------------------------
Section-A
Objective type Questions 1*18=18
Q.1) A software that can be freely accessed and modified is called……
a) Synchronous Software b) Package Software
c) Open-Source Software d) Middleware
Q.2)- An example of an open-Source DBMS.
a) MySQL b) Oracle c) SQL Server d) Sybase
Q.3- What is an example of e-waste?
a) A ripened banana b) an old computer c) old clothes d) empty soda cans
Q.4- The type of fraud that involves using someone else’s identity online, is called ---------
a) Phishing b) Cyber Stalking
c) Identity Theft d) Plagiarism
Q.5- Which of the following is not a social networking site?
a) Twitter b) Facebook c) Instagram d) Gmail
Q.6- Which of the control statements in Python?
a) Selection b) Iteration c) Both a & b d) Sequential
Q.7- Correct ‘Syntax’ of simple “If……. else” is:
a) if condition
Statements…………
b) if condition.
Statements…
c) if condition:
Statement….
d) if condition……
Statements.
Q.8- Which statements can be written in ‘IF’ condition
a) 3 b) 5 c) 10 d) Any numbers of statements
Q.9- Which of the following is not a type of Cybercrime?
a) Data theft b) Forgery
c) Damage to data and system d) Installing antivirus for protection
Q.10- What is meant by the term ‘cyber-crime’?
a) Any crime that uses computers to jeopardise or attempt to jeopardise national security
b) The use of computer networks to commit financial or identity fraud
c) The theft of digital information
d) Any crime that involves computers and networks
Q.11- Dictionaries are also called--------------
a) Mapping b) hashes c) associative arrays d) all of these
Q.12- which of the following can be used to delete item(s) from a dictionary?
a) del statement b) pop() c) popitem() d) all of these
Q.13- What will be the output of following python code?
Tp1=(2,4,3)
Tp3=Tp1*2
print(Tp3)
a) (4,8,6) b) (2,4,3,2,4,3) c) (2,2,4,4,3,3) d) Error
Q.14- what is the output of the following
L =[None]*10
print(len(L))
a) 10 b) 0 c) Syntax Error d) None
Q.15- What is the output of following code?
Str1=”Mission 999”
Str2=”999”
print(Str1.isdigit(),Str2.isdigit())
a) False True b) False False c) True False d) True True
Q.16- Fill in the blank
The ___________ returns the ASCII value of a given character.
Q17 and 18 are ASSERTION (A) AND REASONING (R) based questions. Mark the correct choice as
(A) Both A and R are true and R is the correct explanation of A
(B) Both A and R are true but R is not the correct explanation of A
(C) A is true but R is false
(D) A is false but R is true

Q.17- ASSERTION. Tuples are immutable sequences of python.


REASON. You cannot change elements of a tuple in place.
Q.18- ASSERTION. Dictionaries are similar to lists, in a way.
REASON. Dictionaries are similar to lists, only in mutability.

SECTION-B 2*7=14
Q.19- What are intellectual property rights (IPR)?
Q-20- What do you understand by plagiarism? Why is it a punishable offence?
Q.21- What do you understand by identity theft?
Q.22- How are dictionaries different from lists?
Q.23- When should tuples be preferred over lists?
Q.24- What is the difference between append( ) and extended( ) functions?
Q.25- Write a program to input a string and print number of upper- and lower-case letters in it.

SECTION-C 3*5=15
Q.26- Write a Python program to count the number of even and odd numbers in a series of
numbers
Q.27- Define These terms: -
I) phishing II) scam III) computer forensics IV) identity theft
Q.28- Write a python program to find the highest 2 values in a dictionary and also write output.
Q.29- Write a program that inputs individual words of your school motto and joins them to make a
string. It should also input day, month and year of your school’s foundation date and print
the complete date.
Q.30- Write the output of the following python program-

list1 = ["python", "list", 1952, 2323, 432]


list2 = ["this", "is", "another", "list"]
print(list1)
print(list1[1:4])
print(list1[1:])
print(list1[0])
print(list1 * 2)
print(list1 + list2)

SECTION-D 4*2=8
Q.31- Write a program to count the frequency of a given element in a list of numbers.
Q.32- Write a program to read three numbers in three variables and swap first two variables with
the sums of first and second, second and third numbers respectively.

SECTION-E 5*3=15
Q.33- Write The Outputs of the Following code fragments :

I) dict1 = {"name": "Mike", "salary": 8000}


temp = dict1.get("age")
print(temp)

II) sampleDict = dict([


('first', 1),
('second', 2),
('third', 3)
])
print(sampleDict)

III) dict1 = {"key1":1, "key2":2}


dict2 = {"key2":2, "key1":1}
print(dict1 == dict2)

Q.34- Write a program to input a tuples and check if it contains the all elements as same.
Q.35- Write a program to enter a number from keyboard and find its factorial.
Or
Write a program that reads a line and prints its statistics like:
I) Number of uppercase letters: II) Number of lowercase letters:
III) Number of alphabets: IV) Number of digits:
IV) Number of symbols:

**********************************END OF PAPER************************************

You might also like