MS Ip 2024-25
MS Ip 2024-25
Sample Paper
Session: 2024-25
Class: XI
MARKING SCHEME
Time: 3 HOURS
M.M.: 70
General Instructions:
Please check this question paper contains 35 questions.
The paper is divided into 4 Sections- A, B, C, D and E.
Section A, consists of 18 questions (1 to 18). Each question carries 1 Mark.
Section B, consists of 7 questions (19 to 25). Each question carries 2 Marks.
Section C, consists of 5 questions (26 to 30). Each question carries 3 Marks.
Section D, consists of 2 questions (31 to 32). Each question carries 4 Marks.
Section E, consists of 3 questions (33 to 35). Each question carries 5 Marks.
All programming questions are to be answered using Python Language only.
SECTION A
1 Determine if there are any backups available to look for recovery options. 1
b) UPDATE Employee SET Dept = “Analyst” WHERE DeptID = 2 and Salary > 40000; 1
To group the tables that are related to each other, we need to identify common 1
fields among the tables that can establish relationships. Based on the given fields,
here are the potential relationships:
b) 3 times 1
27 Length of my_list: 5 1
[10, 20] 1
Sorted list: [10, 20, 30, 40, 50] 1
28 a) Update School set NoOfStudents=NoOfStudents+5; 1
b) 1
Class Section NoOfStudents
IX A 45
X B 40
XI A NULL
XII B 5
c) Null values in databases represent missing or unknown information. They are 1
placeholders indicating that data does not exist or is not yet known. Here's why
nothing can be added to null values.
b)
Input Devices: Scanner, Barcode Reader 1
Output Devices: Plotter, Speaker 1
32 a)
{'Aman': 80, 'Sumit': 30, 'Dinesh': 50, 'Suresh': 80} 1
{'Aman': 80, 'Sumit': 30, 'Dinesh': 30, 'Suresh': 20} 1
a) print(MYLIST[3])
b) MYLIST[2]=”MUTABLE” 1
c) MYLIST.reverse() 1
1
or
MYLIST[::-1]
d) MYLIST.insert(4,"SEQUENCE") 1
e) MYLIST[2:5] 1