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

11ip03 MS

.. .. .. .. ....

Uploaded by

anu.panchu007
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)
38 views3 pages

11ip03 MS

.. .. .. .. ....

Uploaded by

anu.panchu007
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

11IP03

KENDRIYA VIDYALAYA SANGATHAN ERNAKULAM REGION


SEE EXAMINATION 2022-2023
CLASS XI – INFORMATICS PRACTICES NEW PYTHON(065)
Time : 3 hrs Max. Marks: 70

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

Correct definition with example


30 i. Select Empid from hotel where salary < 50000; 3
ii. Select category from hotel where category like ‘M%’;
iii. Insert into hotel values( ‘E107’,’Manager’,65000);

OR

a. i.
EmpID Category Salary
E102 Executive 65000

a. ii. empty set


b. desc or describe

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

Correct program with logic


32 i. select * from student where optional=‟IP‟; 5
ii. select name, stream, optional from student where name like “A%‟;
iii. select distinct stream from student;
iv. select name from student where average>75;
v. select name from student where stream=”Commerce” and
Optional=”IP”;
33 i) select Book_name from books where type=“Text”; 5
ii) select book_name, Quantity,Price from books where book_name like
“%C++%”;
iii) William Hopkins
Brain & Brooke
Anna Roberts
iv) First
v) The Tears William Hopkins
Thunderbolts Anna Roberts

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

n=int(input(“Enter the number :”)


for i in range(1,11):
print(i*n)

35 I. i. INSERT INTO : DML command 1+1+2


ii. CREATE TABLE : DDL command (½ Mark for each correct answer)
II. No, Here the itemname should start with M, hence equal symbol cannot be
used. Instead pattern matching with LIKE clause to be used. Hence, she
should write the following query:
Select * from orders where itemname like ‘M%’;

OR

Correct definition with syntax or example

You might also like