Commerce (English Medium)
Science (English Medium)
Arts (English Medium)
Academic Year: 2022-2023
Date & Time: 23rd March 2023, 10:30 am
Duration: 3h
Advertisements
General Instructions:
- This question paper contains five sections, Section A to E.
- All questions are compulsory.
- Section A have 18 questions carrying 1 mark each.
- Section B has 7 Very Short Answer type questions carrying 2 marks each.
- Section C has 5 Short Answer type questions carrying 3 marks each.
- Section D has 3 Long Answer type questions carrying 5 marks each.
- Section E has 2 questions carrying 4 marks each. One internal choice is given in Q. 35 against Part E only.
- All programming question are to be answered using python language only.
Which of the following topologies is very efficient and all nodes are connected to a central hub?
Star
Tree
Bus
Ring
Chapter:
Ramandeep is a young woman with great aspirations and has a good team of like-minded people. She along with her team members started a company to sell handicrafts online and also designed a logo for their company, What type of intellectual property does this logo represent?
Patents
Copyright
Design
Trademark
Chapter:
Which of the following is a type of cybercrime where objectionable and demeaning comments ate posted on social media platform about a person, such that he/she is mentally harassed?
Phishing
Hacking
Cyber bullying
Identity Theft
Chapter:
Which of the following is the correct output of the following SQL command?
SELECT ROUND (7876.4568, 2);
7876.46
7876.45
7900
7900.4568
Chapter:
Aggregate functions are also known as ______.
Scalar Functions
Single Row Functions
Multiple Row Functions
Hybrid Functions
Chapter:
Primary law in India for matters related to e-commerce and cyber crime is ______.
IT AcT 1995
IT Act 2000
IT Act 1998
IT Act 2010
Chapter:
Ravisha has stored the records of all students of her class in a MYSQL table. Suggest a suitable SQL clause that she should use to display the names of students in alphabetical order.
SORT BY
ALIGN BY
GROUP BY
ORDER BY
Chapter:
To remove the leading and trailing space from data values in a column of MySql Table, we use ______.
Left()
Right()
Trim()
Ltrim()
Chapter:
If the substring is not present in a string, the INSTR()
returns ______.
−1
1
NULL
0
Chapter:
What will be the output of the following code?
import pandas as pd
myser = pd.Series([0, 0, 0])
print(myser)
0 0
0 0
0 0
0 1
0 1
0 2
0 0
1 0
2 0
0 0
1 1
2 2
Chapter:
Which of the following is a two-dimensional labelled data structure of Python?
Relation
Data frame
Series
Square
Chapter:
To compare data values of commission earned by salesmen over a year, which of the following type of graph should preferably be used?
line
area
bar
scatter
Chapter:
Which of the following is not a web browser?
Opera
Google Chrome
Linux
Mozilla Firefox
Chapter:
Which of the following is not a valid aggregate function in MYSQL?
COUNT()
SUM()
MAX()
LEN()
Chapter:
The digital footprint that we leave online unintentionally is called ______.
Active digital footprint
Passive digital footprint
True digital footprint
False digital footprint
Chapter:
E-waste is responsible for the degradation of our environment if not properly treated or disposed of. Some of the feasible methods of e-waste management are reduce, ______ and recycle.
reuse
recheck
resubmit
regular
Chapter:
Assertion (A): A static web page does not change for each person visiting the web page.
Reason (R): When a web server receives a request for a dynamic web page, it locates and updates the page and sends it to the browser of the client.
Both (A) and (R) are true and (R) is the correct explanation for (A).
Both (A) and (R) are true and (R) is not the correct explanation for (A).
(A) is true and (R) is false.
(A) is false but (R) is true.
Chapter:
Advertisements
Assertion (A): The output of addition of two series will be NaN, if one of the elements or both the elements have no value(s).
Reason (R): While performing mathematical operations on a series, by default all missing values are filled in with 0.
Both (A) and (R) are true and (R) is the correct explanation for (A).
Both (A) and (R) are true and (R) is not the correct explanation for (A).
(A) is true and (R) is false.
(A) is false but (R) is true.
Chapter:
Keshav has written the following query to find out the sum of bonus earned by the employees of WEST zone:
SELECT zone, TOTAL (bonus) FROM employee HAVING zone = 'WEST';
But he got an error. Identify the errors and rewrite the query by underlining the correction(s) done.
Chapter:
Differentiate between COUNT()
and COURT(*)
functions in MYSQL
. Give suitable examples to support your answer.
Chapter:
Write a Python program to create a series object, country
using a list that stores the capital of each country.
Note: Assume four countries to be used as index of the series object are India, UK, Denmark, and Thailand having their capitals as New Delhi, London, Copenhagen, and Bangkok respectively.
Chapter:
Nowadays all of us frequently use social media to connect with our friends. Give any two netiquettes that we should follow while communicating on social media.
Chapter:
What will be the output of the following code:
import pandas as pd
s1 = pd.Series(data=2*(3, 10))
print(s1)
Chapter:
Carefully observe the following code:
import pandas as pd
dic={'pid': [101, 102, 103, 104, 105],
'pname': ['Shyam', 'Roushan', 'Archit', 'Medha', 'Lalit'],
'sports': ['Cricket', 'Tennis', 'Football', 'Cricket', 'Cricket'],
'points': [45000, 20000, 15000, 53000, 60000]}
player=pd.Data Frame(dic)
print(player)
Write Python statements for the following:
- In the dataframe player created above, set the row labels as 'Player 1', 'Player 2', 'Player 3', 'Player 4', 'Player 5'.
- Rename the column 'points' to 'netpoint' in the DataFrame player.
Chapter:
Consider the table Patient given below and write SQL commands.
Table: Patient | |||||
Patientid | Name | City | Phone | Dateofadm | Department |
1000001 | Ritvik Garg | Delhi | 68476213 | 2021-12-10 | Surgery |
1000002 | Rahil Arora | Mumbai | 36546321 | 2022-01-08 | Medicine |
1000003 | Mehak Bhatt | Delhi | 68421879 | 2022-02-02 | Cardiology |
1000004 | Soumik Rao | Delhi | 26543266 | 2022-01-11 | Medicine |
1000005 | Suresh Sood | Bangalore | 65432442 | 2021-03-09 | Surgery |
- Display the details of all patients who were admitted in January.
- Count the total number of patients from Delhi.
- Display the last 2 digits of the Patient id of all patients from Surgery Department.
Chapter:
Advertisements
Kavyanjali, a chemical analyst, needs to arrange data of few elements in the form of two series containing symbols and their atomic numbers respectively. Thereafter, the data of these two series has to be arranged and displayed in the form of Data Frame as shown below:
Symbol | Atomic Number | |
Hydrogen | H | 1 |
Helium | He | 2 |
Lithium | Li | 3 |
Beryllium | Be | 4 |
Help her in writing suitable Python code to complete the task.
Chapter:
Consider the given DataFrame 'health'.
Diseasename | Agent | |
0 | Common cold | Virus |
1 | Chickenpox | Virus |
2 | Cholera | Bacteria |
3 | Tuberculosis | Bacteria |
Write suitable Python statements for the following:
- Remove the row containing details of disease named Tuberculosis.
- Add a new disease named 'Malaria' caused by 'Protozoa'.
- Display the last 2 rows.
Chapter:
Manohar received an email from a company, named Make money Pvt. Ltd., claiming that Manohar has won ₹ 20 lakhs in a survey done online. In order to claim the prize money, he was required to answer few security questions such as his Name, Account number, PAN card details, Phone number and OTP for verification purposes. For this, he had to click on the link provided in the email. |
Answer the following question:
- Should Manohar give the required details to the company?
- What is the activity depicted above?
- What should he do with this email?
Chapter:
Write any two measures that one should take to avoid being the victim of hacking.
Chapter:
Write the output (i-iii) for the following SQL commands.
TABLE: FASHION
ID | Product | Price | Qty |
F01 | Kajal | 970 | 10 |
F02 | Foundation | 2100 | 15 |
F03 | Night Cream | 1700 | 20 |
F04 | Day Cream | 1400 | 10 |
F05 | Shampoo | 1200 | 25 |
F06 | Lipstick | 850 | 32 |
SELECT COUNT (Product) FROM FASHION;
SELECT SUM (Price*Qty) FROM FASHION WHERE Product = "Night Cream";
SELECT LEFT (Product, 4) FROM FASHION WHERE Price>1500;
Chapter:
Find the output of the following SQL queries:
SELECT SUBSTR("CLIMATE CHANGE", 4, 4);
SELECT UCASE(RIGHT ("Pollution", 3));
SELECT LENGTH("HAPPY")+3;
Chapter:
Write the SQL queries which will perform the following operations:
- To display the year from your Date of Admission which is '2023-05-15'.
- To convert your email id '[email protected]' to lowercase.
- To remove leading spaces from a string 'my country'.
- To display current date.
- To display the value of 106.
Chapter:
Consider a table PRODUCT with the following data:
Table: PRODUCT | |||||
SNO | Itemname | Company | Stockdate | Price | Discount |
1 | Monitor | HP | 2021-12-20 | 15499.739 | 15 |
2 | Webcam | Logitech | 2020-02-03 | 4890.90 | 5 |
3 | Keyboard | Logitech | 2022-08-19 | 1878.985 | 30 |
4 | Mouse | HCL | 2021-05-16 | 1200.00 | 7 |
5 | Speakers | iBall | 2021-10-19 | NULL | 25 |
Write SQL queries using SQL functions to perform the following operations:
- Display the first 3 characters of all Itemnames.
- Display the names of all items whose Stockday is "Monday".
- Display the total price of all the products.
- Display the maximum Price.
- Display the average Price of all the products by the company named 'Logitech'.
Chapter:
XEED Private Ltd., Delhi is a company that deals with educational toys. They have different divisions HR (A1), Sales (A2), Production (A3) and Marketing (A4).
The layout of the Delhi branch is:
The company also has a branch in Bangalore. The management wants to connect all the divisions as well as all the computers of each division (A1, A2, A3, A4).
Distance between the wings are as follows:
A3 to A1 | 25 m |
A1 to A2 | 40 m |
A2 to A4 | 25 m |
A4 to A3 | 20 m |
A3 to A2 | 30 m |
A1 to A4 | 170 m |
Delhi Head Office to Bangalore Office | 2154 km |
Number of computers in each of the wing:
A1 | 50 |
A2 | 40 |
A3 | 110 |
A4 | 60 |
Based on the above specifications, answer the following questions:
- Suggest the topology and draw the most suitable cable layout for connecting all the divisions of Delhi branch.
- Suggest the kind of network required (out of LAN, MAN, WAN) for connecting Production (A3) with the Bangalore branch.
- Which device can be used to connect the network of Delhi Branch to the Internet? This device should be able to receive data, analyse it and then transmit it to the network.
- Suggest the placement of switch/hub with justification.
- Many employees were finding it difficult to cope up with work pressure and hence were showing stress related symptoms. In order to improve the mental health of its employees, HR planned to conduct an online session with a mental health expert from Mumbai. Out of the options given below, suggest the protocol that will help to send the voice signals over internet to conduct the session successfully.
- FTP
- SMTP
- VOIP
- POP
Chapter:
Consider the following graph. Write the Python code to plot it. Also add the Title, label for X and Y axis.
Use the following data for plotting the graph
smarks=[10,40,30,60,55]
sname=["Sahil", "Deepak", "Anil", "Ravi", "Riti"]
Chapter:
Write Python code to draw the following bar graph representing the total sales in each quarter. Add the Title, Label for X-axis and Y-axis.
Use the following data for plotting the graph:
sales=[450,300,500,650]
qtr=["QTR1", "QTR2", "QTR3", "QTR4"]
Chapter:
Consider the following table Schooldata:
Table: Schooldata | |||||
Admno | Name | Grade | Club | Marks | Gender |
20150001 | Sargam Singh | 12 | STEM | 86 | Male |
20140212 | Alok Kumar | 10 | SPACE | 75 | Male |
20090234 | Mohit Gaur | 11 | SPACE | 84 | Male |
20130216 | Romil Malik | 10 | READER | 91 | Male |
20190227 | Tanvi Batra | 11 | STEM | 70 | Female |
20120200 | Nomita Ranjan | 12 | STEM | 64 | Female |
Write SQL queries for the following:
(i) Display the average Marks secured by each Gender.
(ii) Display the minimum Marks secured by the students of Grade 10.
(iii) Display the total number of students in each Club where number of students are more than 1.
OR
(iii) Display the maximum and minimum marks secured by each gender.
Chapter:
Consider The following DataFrame 'mdf'.
Rollno | Name | English | Hindi | Maths | |
0 | 1 | Aditya | 23 | 20 | 28 |
1 | 2 | Balwant | 18 | 1 | 25 |
2 | 3 | Chirag | 27 | 23 | 30 |
3 | 4 | Deepak | 11 | 3 | 7 |
4 | 5 | Eva | 17 | 21 | 24 |
- Write Python statements for the DataFrame 'mdf':
- To display the records of the students having roll numbers 2 and 3.
- To increase the marks of subject Math by 4, for all students.
- Write Python statement to display the Rollno and Name of all students who secured less than 10 marks in Maths.
OR
Write Python statement to display the total marks i.e., sum of marks secured in English, Hindi and Maths for all students.
Chapter:
Other Solutions
Submit Question Paper
Help us maintain new question papers on Shaalaa.com, so we can continue to help studentsonly jpg, png and pdf files
CBSE previous year question papers Class 12 Informatics Practices with solutions 2022 - 2023
Previous year Question paper for CBSE Class 12 Informatics Practices-2023 is solved by experts. Solved question papers gives you the chance to check yourself after your mock test.
By referring the question paper Solutions for Informatics Practices, you can scale your preparation level and work on your weak areas. It will also help the candidates in developing the time-management skills. Practice makes perfect, and there is no better way to practice than to attempt previous year question paper solutions of CBSE Class 12.
How CBSE Class 12 Question Paper solutions Help Students ?
• Question paper solutions for Informatics Practices will helps students to prepare for exam.
• Question paper with answer will boost students confidence in exam time and also give you an idea About the important questions and topics to be prepared for the board exam.
• For finding solution of question papers no need to refer so multiple sources like textbook or guides.