Computer File
Computer File
Session: 2023-24
Class: XI
Time: 3 HOURS M.M.: 70
Instructions:
SECTION A
1 Identify the interface that allows user to run program or give instructions to the 1
computer in the form of icons, menus and other visual options.
(i) Graphical User Interface
(ii) Character User Interface
(iii) Touch Based Interface
(iv) Voice Based Interface
2 1074 ZB = ___________________? 1
(i) 1 YB 50ZB (ii) 1EB 50ZB (iii) 1YB 50 PB (iv)1PB 50 TB
3 _______ involves fetching data from storage devices for its processing. 1
(i) Data Storage (ii) Data capturing (iii) Data Retrieval (iv) Data Deletion
4 Nimish has joined an organization which uses only Open Source Software. Help him to 1
identify which software he cannot use in his organization.
(i) Python (ii) Libre Office (iii) JAVA (iv) Tally
5 Identify the incorrect identifier from the following: 1
(i) none (ii) None (iii) nan (iv) NaN
6 Shilpi is teaching Arithmetic operators in Python. One of her student wrote the 1
following statement:
'7'+5
Predict the output of the above mentioned statement:
(i) 75 (ii)12 (iii) TypeError (iv) 77777
7 Identify the correct command which will produce the output given below: 1
[0,-2,-4,-6,-8]
(i) list(range(-2,-8,-2))
(ii) list(range(0,-8,-2))
(iii) list(range(-2,-10,-2))
(iv) list(range(0,-10,-2))
8 Consider the attributes ( RollNumber, SName, SDateofBirth, GUID ) of the table Student. 1
According to you, which of the following option is the correct representation of the
table after executing the following query:
(ii)
RollNumber SName SDateofBirth GUID
1 Atharv 2003-05-15 12354899
2 Sudha 2002-02-28 00000000
(iii)
RollNumber SName SDateofBirth GUID
1 Atharv 2003-05-15 12354899
2 Sudha 2002-02-28 0
(iv)
RollNumber SName SDateofBirth GUID
1 Atharv 2003-05-15 12354899
2 Sudha 2002-02-28
9 Mr. Malhotra is working on MySql table named Student with the following table 1
schema:
14 A student wants to delete a tuple from a table in MYSQL, which of the following 1
print( x‐ y)
Doc_Name
Avinash
Hariharan
Vinayak
Deepak
Sanjeev
Write the output of the following queries:
(i) SELECT Doc_name FROM HOSPITAL WHERE Doc_name LIKE „%v‟;.
(ii) SELECT Doc_name FROM HOSPITAL WHERE Doc_name LIKE „_e%‟
SECTION C
26 Evaluate the following: 3
i)print("ab">"ac" and "bc"<"ad")
ii)print(20-5%10>10 and 7+8<=15)
iii)print(True and True and not True )
27 (i) Himank has written the following statement in Python, but it is showing an 1
error:
X = 021
According to you what could be the problem?
(ii) “Our heritage monuments are our assets. They are a reflection of our rich 2
and glorious past and an inspiration for our future. UNESCO has identified
some of Indian Heritage sites as World Heritage Sites.”
Identify at least two parameters from the above text that can be used as key
29 Suppose there are five students in a class each having unique roll number. Students have 3
been given an option to choose only one of the skill based subjects. The class
representative has prepared a Relation ‘Skill_Subjects_Preferences’ with Roll_No as
Primary Key as shown below:
Table: Skill_Subjects_Preferences
Roll_No Preference
15 Artificial Intelligence
18 Beauty and Wellness
19 Handicrafts
19 Design and Thinking
20 Information Technology
21 Null
Null Marketing
Answer the following:
i) Roll number 21 is not interested in any of the skill based subject. Can a NULL
value be assigned to that student’s preference field? Justify.
ii) Roll no 19 has given two preferences. Which property of RDBMS is violated
here?
iii) Marketing was not chosen by any student. Is it possible to have this tuple in the
Skill_Subjects_Preferences relation? Justify.
Or
Solve the crossword given below:
Across
Down
30 What is Grid Computing? Explain its two types. 3
Or
i) Name any two areas where the concept of block chain technology can be useful. 1
ii) Differentiate between Virtual Reality and Augmented Reality. 2
SECTION D
31 The record of salesman (Name, Item Sold, sale of three quarters and Commission) is 5
stored in the following list:
Sale=[„Amit‟, „Laptop‟, [35000,42000,85000],20000]
Write Python statements to retrieve the following information from the list Sale:
i)Print the sale of 2nd Quarter.
ii)Add 56000 as sale of 4th quarter. iii)Change
value of product from Laptop to Tablet iv)Delete
Commission from the list v)Print minimum sale
Or
Consider the following dictionary: states={„D‟: „Delhi‟ , „K‟ : „Kerala‟ , „T‟ :
„Tamil Nadu‟ , „B‟ : „Bihar‟}
Write Python statements for the following:
print(Marks)
Or (option for part iii only)
Name the function for the following:
i) To declare empty dictionary.
ii) To append the key value pair of the dictionary passed as the argument to
the key value pair of the given dictionary?