TUTORIAL MS IP Class 12 For 2023
TUTORIAL MS IP Class 12 For 2023
com
Answer Key Sample Paper 1
Subject: Informatics Practices (065) Class 12
Time: 3:00 Hours 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 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 in Python Language only.
Section –A
1. Two friends are working in the same office are transferring their files through
Bluetooth in their devices. Which type of network the have used?
a) LAN c) WAN
b) MAN d) PAN
2. Which of the following is an example of absolute URL?
a) samplepaper-ip-class12
b) https://www.tutorialaicsip.com
c) /Sample-Paper-2023/Samplepaper-ip-class12.html
d) All of these
3. Read the following statement and select an appropriate term for the same:
“It includes websites visited by user, emails sent by user, information submitted
online by user, IP address, location and other serviced online. “
a) Digital Footprint c) Plagiarism
b) IPR d) Cyber Stalking
4. Rama is working on MySQL. She wants to count the employees not earning
commission from the table emp. Which of the following is correct statement for her?
a) Select count(empno) from emp where commission is not null;
b) Select count(empno) from emp where commission = null;
c) Select count(empno) from emp where commission is null;
d) Select commission(empno) from emp where commission =’null’;
Downloaded from www.tutorialaicsip.com
5. Krushn wants to display the unique departments from table emp. Which of the
following is correct statement for him?
a) Select unique department from emp;
b) Select distinct department from emp;
c) Select department from emp;
d) Select department(unique) from emp;
6. The software which are sold commercially and their source code not shared or
distributed to the users are known as _____________
a) Proprietary software c) GPL License software
b) FOSS software d) Pirated Software
7. Which function In SQL, we can use similarly as substr() or substring() ?
a) instr() c) middle()
b) mid() d) between()
8. Which of the following is not a multiple row function?
a) round() c) max()
b) sum() d) count()
9. Minakshi wants to sort the SQL query result in sorted form of a particular columns,
which of the following clause is correct for the same?
a) order by c) group by
b) sort by d) sorted by
10. Nirmal has written following code to get the last five records from Series object S,
but he is not getting the correct output.
print(s.bottom(5))
Help him by selecting an appropriate option from the following to get his desired
result?
a) s.last() c) s.tail()
b) s.trail() d) s.end()
11. NumPy stands for
a) Numbered Python c) Numeric Python
b) Number Python d) Numerical Python
12. The pandas Series can be considered as
a) Column in a spreadsheet
b) Row in a spreadsheet
c) Cell in a spreadsheet
d) Header in a spreadsheet
Downloaded from www.tutorialaicsip.com
13. Which amongst from the following is used to identifies a resource by its location
or by its name or both?
a) URL c) URA
b) URI d) URR
14. Mehal wants to display name of day of his birthday. Select appropriate function
name for him.
a) day() c) weekday()
b) dayname() d) nameofday()
15. A patent protects an invention for _____ years and then it can be freely used.
a) 10 c) 20
b) 15 d) 25
16. Be secure refers to
a) Choose password wisely c) Beware of fake information
b) Know who you be friend d) All of these
Q17 & 18 are ASSERTION & REASONING based questions. Mark the correct choice as
a) Both A and R are true and R is the correct explanation for A
b) Both A and R are true and R is not the correct explanation for A
c) A is True but R is False
d) A is false but R is True
17. Assertion(A): User cannot download any image directly from google and use in
their content.
Reasoning(R):The images are subject to copyrights.
a) Both A and R are true and R is the correct explanation for A
18. Assertion(A): In python pandas at attribute is to select or access multiple values
from data frame.
Reasoning(R): In python pandas, loc attribute is used to select or access a
single/multiple value(s) from dataframe.
d) A is False but R is True
Section –B
19. List out any four services provided by internet.
Ans.: The services provided by internet are as follows:
i. The world wide web
ii. Electronic Mail
iii. Chat
iv. VoIP
(Reference: NCERT Text Book – P.G.No:149/(159/220))
Downloaded from www.tutorialaicsip.com
OR
Differentiate between LAN and MAN. (Any two points)
Ans.:
LAN MAN
Full Form Local Area Network Metropolitan Area Network
Connection Connects small area Covers large regions like cities
Speed Offers High Speed Offers moderate speed
Uses Schools, Homes, Colleges etc. Government Sectors
OR
Write python code to depict the data of India/England semi final runs by over on
line chart. The data as following:
Overs 5 10 15
India 31 62 100
England 52 98 156
i) Display the overs as same as given here on x-axis.
ii) Apply the line colours as – India : Blue, England: Red
iii) Apply appropriate labels
iv) Apply chart label – T20W Cup 2022 : Semi-final 2
Ans.:
import matplotlib.pyplot as plt
overs=[5,10,15]
ind=[31,62,100]
eng=[52,98,156]
plt.plot(overs,ind,'b')
plt.plot(overs,eng,'r')
plt.xlabel("Overs")
plt.xticks(overs)
plt.ylabel("Runs")
plt.show()
Downloaded from www.tutorialaicsip.com
Section – E
34. Consider the below given table – SuperArcade:
SNo AgencyName Owner Opening_Date Rent FLR
1 Gujarat Gas Gujarat Gas 2021-01-01 35000 I
2 Padhai Classes Ankur Patel 2018-04-01 32000 II
3 Ram Enterprise Ram Patel 2018-06-15 38000 I
4 SP InfoTech Siraj Patel 2020-05-17 28000 II
5 Gallops Niraj Desai 2018-05-20 48000 III
6 GK Classes Geet Kapoor 2019-08-15 34000 I
7 Nishtha Couriers Nishtha Patel 2020-11-04 22000 G
Krunal joined as DBA and written following partial queries, complete the queries and
help him: (1 + 1 + 2)
a) Select _________, _________ from superarcade; (Maximum & Minimum Rent)
Ans.: max(rent), min(rent)
b) Select __________ from superarcade; (owner name into capital)
Ans.: ucase(owner)
c) Select FLR, avg(rent) from superarcade _________ having ______>=2;
(Floor wise average rent where shops are more than 2)
Ans.: group by, count(agencyname)
OR
Select AgencyName, Owner from superarcade ____________ opening_date
___________ (Display the shops as per by history (Latest to Oldest)).
Ans.: order by, desc
35. Consider the following dataframe:
AppName Category Rating Installs
Coloring Book Barbaie Entertainment 3.8 646456
Pocket Bowling 3D Sports 3.6 334144
Smart File Manager Productivity 4.4 3741253
Photo Collage Photography 3.6 2534748
-------------X-----------------
Thank You