12 IP PreBoard SS 2024
12 IP PreBoard SS 2024
General Instructions:
1. This question paper contains five sections, Section A to E.
2. All questions are compulsory.
3. Section A have 21 questions carrying 01 mark each.
4. Section B has 07 Short Answer type questions carrying 02 marks each.
5. Section C has 04 Short Answer type questions carrying 03 marks each.
6. Section D has 02 Long Answer type questions carrying 4 marks each.
7. Section E has 03 Long Answer type questions carrying 5 marks each.
8.All programming questions are to be answered using Python Language only.
SECTION A
(OBJECTIVE TYPE QUESTIONS) [1X21=21]
a. Bus Topology
b. Star Topology
c. Ring Topology
d. Mesh Topology
SS Page 2 of 11
b. Panel series
c. Python document
d. Panel dataframe
8. If a substring is not present in a string the INSTR() returns
a. -1
b. NULL
c. 1
d. 0
9. The device that can operate in place of a hub is
a. Switch
b. Bridge
c. Router
d. Gateway
10. Primary law in India for matters related to e-commerce and
cybercrime is
a. IT act 1995
b. IT act 2000
c. IT Act 1998
d. IT Act 2010
11. SQL uses ____clause to display the names of students in
alphabetical order.
a. Sort by
b. Align by
c. Group by
d. Order by
12. Pop() functions accepts List values as parameter.
a. True
b. False
13. To compare data values of commission earned by sales men
over a year, which of the following type of graph should
preferably be used?
a. Line
b. Area
c. Bar
d. Scatter
SS Page 3 of 11
14. Which of the following will raise an error if given key is not
found in the dictionary.
a. Del
b. Pop()
c. Getitem()
d. All of the above
15. State the output of the given code:
SELECT ROUND(7486.9514,-2);
a. 7500
b. 7400
c. 7480
d. 7490
16. Mayank is not sure about the concept of Shareware and
Proprietary Software. Choose the similar aspects of both
Shareware and Proprietary Software to help him.
(i) Both have no source code.
(ii) Both are freely available.
(iii) Both cannot be modified.
(iv) Both can be downloaded from Internet.
Select the right choice from the followings:
a. (i) , (iii) and (iv)
b. (ii) and (iii)
c. (i) and (iii)
d. (i) , (ii) and (iv)
17. State True or False:
(v) Licensing is a legal procedure to provide rules and
guidelines for other user to use the work.
(vi) Digital Footprints are stored only temporarily (for few
days) and not permanently.
Choose the correct alternative:
(a) (i) True (ii) False
(b) (i) False (ii) True
(c) (i) True (ii) True
(d) (i) False (ii) False
18. Observe the following DataFrame 'Gadgets'created by AYUSH :
Gcode GName GPrice
SS Page 4 of 11
0 G10021 Computer 40000
1 G10030 Mobile 20500
2 G10045 Laptop 75000
Calculate 10% of GPrice and assign to a new column named Tax.
SS Page 5 of 11
d. A is false but R is true.
SECTION B
SHORT ANSWERED QUESTIONS [2X7=14]
26. Write the python program to plot a line chart with the help of
given data ensure that the chart contains proper axis labels and
title.
City : Delhi, Banglore,Mumbai, Kolkata
Population in Lakhs : 12,15,11.7 , 15.9
27. Ayesha's family is replacing their old computer with a new
one. They decide to throw the old computer in a nearby
empty field/plot.
g. Explain any one potential environmental hazard associated
with improper e-waste disposal.
h. Describe the importance of recycling in e-waste management.
SS Page 6 of 11
28. Define Net Etiquettes and IPR.
SECTION C
SHORT ANSWERED QUESTIONS [3X4=12]
29. What is Plagiarism? How will you protect your work from
plagiarism. [3]
30. Consider the given dataframe Health [3]
SECTION D
LONG ANSWERED QUESTIONS [4X2=08]
33. Write code to create the chart given below will all
specifications. Collect all details from diagram [4]
34. Consider the above given table and write sql queries for the
following: Vehicle [4]
SS Page 8 of 11
d. Display the name of vehicles having highest and lowest
price.
SECTION E
LONG ANSWERED QUESTIONS [5X3=15]
35. Write suitable SQL query for the following: [5]
SS Page 9 of 11
Distances between these buildings are as follows:
e. Administrative Office to Factory A 150 m
f. Factory A to Factory B 50 m
g. Factory B to Sales Office 100 m
h. Sales Office to Administrative office 200 m
i. Administrative Office to Factory B 125 m
j. Factory A to Sales Office 85 m
37. Consider the datafrma given below and write the Python
statements for the following [5]
SS Page 10 of 11
Movie Title Year rating
id
0 1 LAGAAN 2001 8.6
1 2 TAARE ZAMEEN 2007 8.4
PAR
2 3 DANGAL 2016 8.4
3 4 ANDHADHUN 2018 8.5
OR
Given below is a DataFrame named 'DF'. Observe it and write the
output produced by the givencommands:
Chetan Mihir Pushkar Ananya
Eng 78 55 89 45
Accounts 65 55 85 56
IP 45 58 39 53
(a) print(DF.shape)
(b) print(len(DF.columns) + len(DF.index))
(c) print(DF.size)
(d) print(DF.iloc[1 , 1] + DF.iloc[-2 , -2])
(e) print(DF.T.shape)
SS Page 11 of 11