11ip03 MS
11ip03 MS
SECTION A
1 b) Cache 1
2 a) CU 1
3 c) i only 1
4 1024 KB 1
5 a) Operands 1
6 Any one example for antivirus 1
7 b) pass 1
8 a) D.values() 1
9 c) Utility program 1
10 b) in 1
11 b) i and iii only 1
12 a) Primary 1
13 c) is 1
14 d) All of the above 1
15 c) Natural Language Processing 1
16 c) Virtual Reality 1
17 ii. Both A and R are true and R is not the correct explanation for A 1
18 iii. A is True but R is False 1
SECTION B
19 Network of interconnected items with integrated sensors that can gather and 2
transmit data in real time is known as the Internet of Things.
Give one example
OR
Cloud computing is Computer based services are delivered over the internet or the
cloud and it is accessible to user from anywhere using any device.
Give one suitable example
20 RAM is a primary memory inside computer which is accessed by processor for 2
information transfer from random locations.
Any one difference between RAM and ROM
21 12 2 2
22 i) 1 2
ii) 4
23 Correct definition and examples 2
24 Varchar would be the suitable data type for EName column as char data type is a 2
fixed length data type while varchar is a variable length data type. Any employee‟s
name will be of variable length so it‟s advisable to choose varchar over char data
type.
(1mark for the correct data type)
(1mark for the correct Justification)
25 a. IN 2
b. Distinct
SECTION C
26 a. Device Driver : are the programs that store instructions to drive and use 3
different hardware devices
b. Operating System: is a program which acts as an interface between a user
and the hardware. (Give ½ mark only for writing only example alone)
c. Compiler: translates and executes instructions written in a computer
program in one go. (Give ½ mark only for writing example alone)
27 i) 5 7 12 7 ( ½ mark for each answer) 3
ii) print(a1, a2, a3, a4, sep='\n')
28 i) 10 (2 marks) 3
ii) [4, 2] (1 mark)
29 Create table Registration ( Reg_Id Integer(2) Primary Key, Name varchar(20), 3
Course varchar(10), Join_Dt date );
OR
OR
a. i.
EmpID Category Salary
E102 Executive 65000
SECTION D
31 list1 = [10, 120, 4, 45, 99] 5
max = list1[0]
for x in list1:
if x > max:
max = x
print("Largest element is:", max)
OR
OR
i. Show tables;
ii. To open an already existing database
iii. Date
iv. Delete from hotel where empid=E104;
v. Insert into books values(‘F01’,’The Tears’,’William Hopkins’, ’first’,
650, ’Fiction’, 20);
SECTION E
34 i. math module 1+1+2
ii. #
iii. for x in range(400,601):
if (x%7 == 0 and x%5 == 0):
print( x )
OR
OR