0% found this document useful (0 votes)
29 views6 pages

11IP03 QP

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

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)
29 views6 pages

11IP03 QP

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

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

11IP03

KENDRIYA VIDYALAYA SANGATHAN, ERNAKULAM REGION


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

General Instructions:
1. This question paper contains five sections, Section A to E.
2. All questions are compulsory.
3. Section A have 18 questions carrying 01 mark each.
4. Section B has 07 Very Short Answer type questions carrying 02 marks each.
5. Section C has 05 Short Answer type questions carrying 03 marks each.
6. Section D has 03 Long Answer type questions carrying 05 marks each.
7. Section E has 02 questions carrying 04 marks each. One internal choice is given in Q35
against part c only.
8. All programming questions are to be answered using Python Language only.

SECTION A
1. ____________ is a high speed memory available inside CPU in order to speed up 1
access to data and instructions stored in RAM memory.
a) ROM b) Cache c) Flash d) SSD

2. Which unit of the CPU directs and coordinates all activities within it and determines 1
the sequence in which instructions are executed, sending instructions sequence to other
smaller unit
a) CU b) ALU c) PROCESSOR d) All of these

3. Identify the valid identifiers from the given list 1


i) _num ii) $num iii) num 1 iv) 1num

a) i and ii only
b) iii only
c) i only
d) I and iii only

4. 1 MB = ______ KB 1

5. In python statement x=a + 15 - b, a and b are ____________ 1


a) Operands b) Expression c) Operators d) Equation

6. Name one antivirus software 1

7. An empty/null statement in Python is __________ 1


a) go b) pass c) over d) ;

8. Which function is used to access the values of a given dictionary D 1


a) D.values() b) D.Values() c) D.value() d) D.Value()

9. A Disk fragmentor is an example of 1


a) Application software b) System software
c) Utility program d) None of the above

KVS RO EKM 2022-23 Page 1 of 6


10. Which of the following is known as membership operator? 1
a) not b) in c) with d) like

11. Which of the following is/are mutable datatypes? 1


i) List ii) Tuple iii) dictionary iv) string

a) i only b) i and iii only c) ii and iv only d) iv only

12. A __________ key stores non-repeating and non-null values in it 1


a) Primary b) Candidate c) Alternate d) None of these

13. Consider the following query 1


Select name from class where subject ____________ NULL;
Which comparison operator may be used to fill the blank space in above query?
a) = b) Like c) is d) = =

14. Example of Artificial Intelligence 1


a) Google Now b) Cortana c) Alexa d) All of the above

15. Spell checking features are examples of ____________ 1


a) Data Science b) Nero Science
c) Natural Language Processing d) All the above

16. ____________ is a three-dimensional, computer generated situation that simulates the 1


real world.
a) Immersive experiences b) Augmented Reality
c) Virtual Reality d) None of the above

Q17 and 18 are ASSERTION AND REASONING based questions. Mark


the correct choice as
i. Both A and R are true and R is the correct explanation for A
ii. Both A and R are true and R is not the correct explanation for A
iii. A is True but R is False
iv. A is False but R is True

17. • Assertion(A): Domain is a pool of values from which the actual values 1
appearing in a given column are drawn
• Reasoning (R): The column Supp_name illustrates an example of domain

18. • Assertion(A): The qualifier DISTINCT must be used in an SQL statement 1


when we want to eliminate duplicate values.
• Reasoning (R): DISTINCT and its counterpart, ALL can be used together on
single field in a SELECT statement

SECTION B
19. Explain IoT with an example 2

OR

Explain Cloud computing with an example

KVS RO EKM 2022-23 Page 2 of 6


20. What is the need of RAM? How does it differ from ROM? 2

21. Write the output of the following code 2


x, y = 9, 5
x, y, x = x+1, y-3, x+3
print(x,y)

22. Find the output of the following commands: 2


i) print(25 % 6)
ii) print(25//6)

23. Define Alternate key with an example 2

OR

Define Candidate key with an example

24. While creating a table named “Employee”, Mr. Rishi got confused as which data type 2
he should chose for the column “EName” out of char and varchar. Help him in choosing
the right data type to store employee name. Give valid justification for the same.

25. Which clause would you use with Select to achieve the following: 2
i. To select the values that match with any value in a list of specified values.
ii. Used to display unrepeated values of a column from a table.

SECTION C
26. Explain the following 3
a. Device Driver
b. Operating System
c. Compiler

27. i) What will be the output of the following 3


a1, a2=5, 7
a3 = a1 + a2
a4 = a1 + 2
print( a1, a2, a3, a4)

ii) Aman wants to modify the output of the above code. Rewrite the print
statement for getting the output in separate lines.

28. i) What will be the output of the following code 3


sum=0

for I in range(1,20,2):
sum=sum+I % 3

print(sum)
ii) What values are generated when the function range(4, 0, -2) is executed

KVS RO EKM 2022-23 Page 3 of 6


29. Write SQL query to create a table “Registration” with the following structure: 3
Table: Registration
Field name Datatype Size Constraint
Reg_Id Integer 2 Primary Key
Name Varchar 20
Course Varchar 10
Join_Dt Date

OR

What is the difference between varchar and char?

30. Consider the table below 3


Table : Hotel
EmpID Category Salary
E101 Manager 60000
E102 Executive 65000
E103 Clerk 40000
E104 Manager 62000
E105 Executive 50000
E106 Clerk 35000
Write the query
i) Display the employee id of those employees whose salary is below 50000
ii) Display the categories starting with ‘M’
iii) Add a new row to the table hotel with the following values
E107, Manager, 65000

OR

a) Consider the above table Hotel. Write the output of the following
i) Select * from Hotel where category=’Executive’ and salary>50000;
ii) Select * from hotel where salary is NULL;
b) Which clause is used to display the schema/structure of the table

SECTION D
31. Write a program to find the biggest among 10 numbers stored in a list (don’t use built 5
in functions)
OR
Write a program to input a list of elements and count the number of occurrences of a
given element in the list. (don’t use built in functions)

32. Consider the following table: Student 5

Admn Name Stream Optional Average


1001 Shrishti Science CS 90
1002 Ashi Humanities Maths 80
1003 Aditya Commerce IP 60
1004 Ritu Raj Science IP 65
1005 Sonali Commerce Maths 60
1006 Saumya Science IP 65

KVS RO EKM 2022-23 Page 4 of 6


1007 Ashutosh Science IP 95
1008 Prashant Commerce P.ED 80
1009 Aman Commerce IP 70
1010 Rishabh Huanities P.ED 85
Write commands in SQL for (i) to (iv):
i. To display the details of all those students who have IP as their optional
subject.
ii. To display name, stream and optional of all those students whose name
starts with “A”.
iii. Display the different stream available to students without repetition
iv. To display a name list of all those students who have average more than
75.
v. To display the name list of those students who have opted Commerce – IP
option

33. Consider the following tables BOOKS. 5


Write SQL commands for the statements (i) to (ii) and give outputs for SQL queries
(iii) to (v).

Table : BOOKS

B_Id Book_Name Author_Name Publisher Price Type Quantity


C01 Fast Cook Lata Kapoor EPB 355 Cookery 5
F01 The Tears William Hopkins First 650 Fiction 20
T01 My C++ Brain & Brooke FPB 350 Text 10
T02 C++ Brain A W Rossaine TDH 350 Text 15
F02 Thunderbolts Anna Roberts First 750 Fiction 50

i) To list the names from books of Text type.


ii) To display the Book_Name, Quantity and Price for all C++ books
iii) Select Author_name from books where Publishers like ”F%” ;
iv) Select DISTINCT Publishers from books where Price >=400;
v) Select Book_Name, Author_Name from books where Publishers = ‘First’;

OR

a. Which clause is used to display the tables in a database


b. Explain the usage of Use command
c. Which datatype is used to store the value ‘2023-03-15’?
d. Which statement is used to delete a record in a table.
e. Write a query to insert the data
F01 The Tears William Hopkins First 650 Fiction 20
into the table Books mentioned above.

SECTION E
34. i. Which module needs to be added to a program to use sqrt() 1+1+2
ii. Which symbol is used to give a comment for the program.

iii. Write a python program check those numbers which are divisible by 7 as well
as by 5, between 400 and 600 (both included)

OR

KVS RO EKM 2022-23 Page 5 of 6


Write a program to print multiplication table of a number. Accept the number
from user

35. In today’s digitized world with a need to store data electronically, it is very important 1+1+2
to store the data in the databases. SQL is used to interact with the Database
Management System.
I. Classify the following commands according to their type :(DDL/DML)
i. INSERT INTO
ii. CREATE TABLE

II. Chhavi has created a table named Orders, she has been asked to display from a
column named itemname where the data starts with M. She has written the
following query for the same.
Select * from Orders where itemname=’M’
Is it the correct query?Justify

OR

Explain the usage of % and _(underscore) characters in pattern matching.

KVS RO EKM 2022-23 Page 6 of 6

You might also like