Class Xi Ip - MS

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 5

KENDRIYA VIDYALAYA SANGATHAN , RAIPUR REGION

SESSION ENDING EXAMINATION 2023-24


CLASS XI
SUBJECT :- INFORMATICS PRACTICES (065)
MARKING SCHEME

SECTION A

1. (a) System bus


2. Cache.
3. (c ) OSS
4. (b) and (c)
5. (c) and
6. is.
7. (c) Dynamic typing
8. 1
4
9
9. for x in range (0,10):
print (x)
10. index()
11. del.
12. (a) constraint
13. (d) ADL
14. (d) select empid where empid = 1009 and lastname = 'GUPTA';
15. (b) Exactly, At Least
16. (c ) where, from
17. (a)
18. (c )
SECTION B
19. Brief note on any of the two system utilities like disk defragmentor, antivirus, file
compressor etc.
1 mark for each explanation.
Or
proprietary software are those software which is neither open nor freely available. It needs
payment for its usage.
1 mark
Foss is free and open source software which can be freely used and the source code is also
available.
1 mark
20. Pop function need index for deleting the element whereas remove functions needs the
element which we want to remove.
Detailed explanation with example 2 marks
21. Hello
Hello
Hello
Hello
Hello
Hello
Hello
Hello
Hello
Hello
2 marks for correct output
22. The key value can not be list.
d1 = { "a": 1, 1: "a", 11: "two"}
1 mark for error and 1 for correction

23. Primary key is the attribute or set of attributes which uniquely identifies a tuple in a
relation. There are many candidate keys in a relation but only one of them can be made
primary key.
1 mark for definition and 1 for keys relation
OR
It is a non key attribute of the table which is the primary key of some other table. The table
where it is primary key is called Master table and from that table the details are referenced
by the child table.
1 mark for definition and 1 for table key relation

24. a. create database Hospital


use Hospital
1 mark for create , 1 mark for use command
b. create table Doctor (doctorid integer, d_name varchar(20), d_dept varchar(15), d_doj
date, d_sal float);.
2 mark for correct query
25. The different categories of SQL command are as follows:-
DDL:- Create table, alter table.
DML:- Select , update
TCL:- Grant , Revoke.
1 mark for types 1 for examples.
SECTION C
26. Write about different functions of list:-
a. len( ) :- it is used to find the number of element present in the list.
b. index ( ):- it is used to find the position (index) of the element in list.
c. insert( ):- used to add an element in the list in desired position(index)
1 mark for each explanation
27. Different data types in SQL used for numeric values are as follows:-
Int, float, double, decimal. Ankita should use date datatype. The format is ‘yyyy-mm-dd’.
2 mark for datatype, 1 for format
28.
(i) select teacher_name, doj where teacher_name like ‘%I%’;
(ii) select * from teacher where doj > ‘2007-12-31’;
(iii) select * from teacher where teacher_code = ‘T002’;
1 mark for each correct query

29. Write the output of the queries based on the following table Accessories:-

(i) Motherboard
LCD
(ii) 5
(iii) 12500 13000
OR

(i) Name Discount


keyboard 250
Motherboard 6500
Keyboard 200
Harddisk 2750

(ii) Name Price


Motherboard 13000
Motherboard 12000
LCD 6000
LCD 5500
Harddisk 5000
Harddisk 4500
Keyboard 500
Keyboard 400
Mouse 350
(iii) Motherboard
Keyboard

30. Different types of arithmetic operators are addition (+), subtraction (-), multiplication(*),
division(/), modulus(%), floor division(//), exponentiation(**). Augmented assignment
operator combines the arthemetic operator with the assignment operator.
Eg. X+=3 means x=x+3
OR
(i) Escape sequences in Python are formed with backslash like \n, \t etc. ½ mark for
explanation and ½ for example.
(ii) Single line and multiline strings in python. 1 mark for each.

SECTION D

31. (a) Write a program to print the type of skills of the above .
fee= {‘B’:300,’I’:450,’A’:600}
for key in fee.key():
print(key)
(b)Write a program to print the values of the skill types.
fee= {‘B’:300,’I’:450,’A’:600}
for v in fee.values():
print(v)

OR

(i) What is the use of range function? Give one example.


Range function generates a list which is special sequence type.
Eg for I in range(0,10)
Will create a sequence of numbers from 0 to 9
(ii) W_kg= float ( input(“ enter weight in kg”))
H_mtr= float (input(“enter height in meter”))
BMI= w_kg/(h_mtr*h_mtr)
print(“BMI is “,BMI,end=””)
if BMI<18.5:
print(“….underweight”)
elif BMI<25:
print(“…normal”)
elif BMI<30:
print(“….Obese”)
32. 1 mark for application software and 1 mark for each softwares.

33. 1 mark for each query


(i) Select visitorname, coming from from visitor where gender= ‘F’ and
amountpaid>3000;
(ii) Select distinct(comingfrom) from visitor;
(iii) Insert into visitor(7,”Shilpa‟,‟F‟,‟Lucknow‟,3000);
(iv) Select * from visitor order by amountpaid desc;
(v) Select * from visitor where gender =’M’;
OR
1 mark for constraint definition and 1 mark each for constraint .
SECTION E
34. (a) Expand the following:- 2+2
1. Natural Language Processing 2. IoT:- internet of things
3. WoT:- web of things 4. P2P:- peer to peer
(b) Augmented reality (AR) augments your surroundings by adding digital
elements to a live view, often by using the camera on a smartphone. Virtual reality
(VR) is a completely immersive experience that replaces a real-life environment with a
simulated one.
OR

(a) machine learning:- Machine learning is a branch of artificial intelligence (AI) and
computer science which focuses on the use of data and algorithms to imitate the way
that humans learn, gradually improving its accuracy.
(b) some applications of machine learning:- Applications of Machine learning · 1.
Image Recognition: · 2. Speech Recognition · 3. Traffic prediction: · 4. Product
recommendations: · 5. Self-driving cars

35. (a) Consider the table Item and answer the given questions:- 1+1+2

Table : Item
(i) Select ICode, IName and Vcode from Item where Iname=’Refrigerator’.
(ii) Select IName, ICode, Vcode, price from item where price >=23000

(b) Sanjay can make Icode as primary key as there is unique icode for each item.

OR
Rajesh can make use of keyword “distinct” to get the names of every area only once.
The query can be :-
Select distinct area_cust from customer.

You might also like