English

Informatics Practices Set 4 2022-2023 Commerce (English Medium) Class 12 Question Paper Solution

Advertisements
Informatics Practices [Set 4]
Marks: 70 CBSE
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:

  1. This question paper contains five sections, Section A to E.
  2. All questions are compulsory.
  3. Section A have 18 questions carrying 1 mark each.
  4. Section B has 7 Very Short Answer type questions carrying 2 marks each.
  5. Section C has 5 Short Answer type questions carrying 3 marks each.
  6. Section D has 3 Long Answer type questions carrying 5 marks each.
  7. Section E has 2 questions carrying 4 marks each. One internal choice is given in Q. 35 against Part E only.
  8. All programming question are to be answered using python language only.

Part - A
[1]1

Which of the following topologies is very efficient and all nodes are connected to a central hub?

Star

Tree

Bus

Ring

Concept: undefined - undefined
Chapter:
[1]2

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

Concept: undefined - undefined
Chapter:
[1]3

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

Concept: undefined - undefined
Chapter:
[1]4

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

Concept: undefined - undefined
Chapter:
[1]5

Aggregate functions are also known as ______.

Scalar Functions

Single Row Functions

Multiple Row Functions 

Hybrid Functions

Concept: undefined - undefined
Chapter:
[1]6

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

Concept: undefined - undefined
Chapter:
[1]7

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

Concept: undefined - undefined
Chapter:
[1]8

To remove the leading and trailing space from data values in a column of MySql Table, we use ______.

Left()

Right()

Trim()

Ltrim()

Concept: undefined - undefined
Chapter:
[1]9

If the substring is not present in a string, the INSTR() returns ______.

−1

1

NULL

0

Concept: undefined - undefined
Chapter:
[1]10

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

Concept: undefined - undefined
Chapter:
[1]11

Which of the following is a two-dimensional labelled data structure of Python?

Relation

Data frame

Series

Square

Concept: undefined - undefined
Chapter:
[1]12

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

Concept: undefined - undefined
Chapter:
[1]13

Which of the following is not a web browser?

Opera

Google Chrome

Linux

Mozilla Firefox

Concept: undefined - undefined
Chapter:
[1]14

Which of the following is not a valid aggregate function in MYSQL? 

COUNT()

SUM()

MAX()

LEN()

Concept: undefined - undefined
Chapter:
[1]15

The digital footprint that we leave online unintentionally is called ______.

Active digital footprint

Passive digital footprint

True digital footprint

False digital footprint

Concept: undefined - undefined
Chapter:
[1]16

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

Concept: undefined - undefined
Chapter:
[1]17 | Q. 17 and 18 are ASSERTION (A) and REASONING (R) based questions. Mark the correct choice as:

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.

Concept: undefined - undefined
Chapter:
Advertisements
[1]18

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.

Concept: undefined - undefined
Chapter:
PART - B
[2]19
[2]19.i
[1]19.i.a

What is web server?

Concept: undefined - undefined
Chapter:
[1]19.i.b

How is web server different from web browser?

Concept: undefined - undefined
Chapter:
OR
[2]19.ii
[1]19.ii.a

What do you understand by the term cookies?

Concept: undefined - undefined
Chapter:
[1]19.ii.b

Give any two benefits of cookies.

Concept: undefined - undefined
Chapter:
[2]20

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. 

Concept: undefined - undefined
Chapter:
[2]21

Differentiate between COUNT() and COURT(*) functions in MYSQL. Give suitable examples to support your answer.

Concept: undefined - undefined
Chapter:
[2]22

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.

Concept: undefined - undefined
Chapter:
[2]23
[2]23.i

Explain the term plagiarism.

Concept: undefined - undefined
Chapter:
OR
[2]23.ii

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. 

Concept: undefined - undefined
Chapter:
[2]24

What will be the output of the following code:

import pandas as pd
s1 = pd.Series(data=2*(3, 10))
print(s1)
Concept: undefined - undefined
Chapter:
[2]25

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:

  1. In the dataframe player created above, set the row labels as 'Player 1', 'Player 2', 'Player 3', 'Player 4', 'Player 5'.
  2. Rename the column 'points' to 'netpoint' in the DataFrame player.
Concept: undefined - undefined
Chapter:
SECTION - C
[3]26

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
  1. Display the details of all patients who were admitted in January.
  2. Count the total number of patients from Delhi.
  3. Display the last 2 digits of the Patient id of all patients from Surgery Department.
Concept: undefined - undefined
Chapter:
Advertisements
[3]27

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.

Concept: undefined - undefined
Chapter:
[3]28

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:

  1. Remove the row containing details of disease named Tuberculosis.
  2. Add a new disease named 'Malaria' caused by 'Protozoa'.
  3. Display the last 2 rows.
Concept: undefined - undefined
Chapter:
[3]29
[3]29.i
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:

  1. Should Manohar give the required details to the company?
  2. What is the activity depicted above?
  3. What should he do with this email?
Concept: undefined - undefined
Chapter:
OR
[3]29.ii
[1]29.ii.a

What do you understand by the term Hacking?

Concept: undefined - undefined
Chapter:
[2]29.ii.b

Write any two measures that one should take to avoid being the victim of hacking.

Concept: undefined - undefined
Chapter:
[3]30
[3]30.i

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
  1. SELECT COUNT (Product) FROM FASHION;
  2. SELECT SUM (Price*Qty) FROM FASHION WHERE Product = "Night Cream";
  3. SELECT LEFT (Product, 4) FROM FASHION WHERE Price>1500;
Concept: undefined - undefined
Chapter:
OR
[3]30.ii

Find the output of the following SQL queries:

  1. SELECT SUBSTR("CLIMATE CHANGE", 4, 4);
  2. SELECT UCASE(RIGHT ("Pollution", 3));
  3. SELECT LENGTH("HAPPY")+3;
Concept: undefined - undefined
Chapter:
SECTION - D
[5]31
[5]31.i

Write the SQL queries which will perform the following operations:

  1. To display the year from your Date of Admission which is '2023-05-15'.
  2. To convert your email id '[email protected]' to lowercase.
  3. To remove leading spaces from a string 'my country'.
  4. To display current date.
  5. To display the value of 106.
Concept: undefined - undefined
Chapter:
OR
[5]31.ii

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:

  1. Display the first 3 characters of all Itemnames.
  2. Display the names of all items whose Stockday is "Monday".
  3. Display the total price of all the products.
  4. Display the maximum Price.
  5. Display the average Price of all the products by the company named 'Logitech'.
Concept: undefined - undefined
Chapter:
[5]32

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:

  1. Suggest the topology and draw the most suitable cable layout for connecting all the divisions of Delhi branch.
  2. Suggest the kind of network required (out of LAN, MAN, WAN) for connecting Production (A3) with the Bangalore branch.
  3. 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. 
  4. Suggest the placement of switch/hub with justification.
  5. 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.
    1. FTP
    2. SMTP
    3. VOIP
    4. POP
Concept: undefined - undefined
Chapter:
[5]33
[5]33.i

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"]

Concept: undefined - undefined
Chapter:
OR
[5]33.ii

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"]

Concept: undefined - undefined
Chapter:
SECTION - E
[4]34

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.

Concept: undefined - undefined
Chapter:
[4]35

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
  1. Write Python statements for the DataFrame 'mdf':
    1. To display the records of the students having roll numbers 2 and 3.
    2. To increase the marks of subject Math by 4, for all students.
  2. 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.
Concept: undefined - undefined
Chapter:

Other Solutions




































Video TutorialsVIEW ALL [2]

Submit Question Paper

Help us maintain new question papers on Shaalaa.com, so we can continue to help students




only jpg, png and pdf files

CBSE previous year question papers Class 12 Informatics Practices with solutions 2022 - 2023

     CBSE Class 12 Informatics Practices question paper solution is key to score more marks in final exams. Students who have used our past year paper solution have significantly improved in speed and boosted their confidence to solve any question in the examination. Our CBSE Class 12 Informatics Practices question paper 2023 serve as a catalyst to prepare for your Informatics Practices board examination.
     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.
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×