मराठी

Informatics Practices Set 4 2023-2024 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: 2023-2024
Date & Time: 2nd April 2024, 10:30 am
Duration: 3h
Advertisements

General Instructions:

  1. This question paper contains five sections, Sections A to E.
  2. All questions are compulsory.
  3. Section A has 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 2 questions carrying 4 marks each.
  7. Section E has 3 questions carrying 5 marks each.
  8. All programming question are to be answered using Python language only.

SECTION - A
[1]1

In ______ topology, the devices are arranged in the form of multiple-branches in hierarchical manner. 

Star

Tree

Mesh

Bus

Concept: undefined - undefined
Chapter:
[1]2

Ridhima purchased a license for a copy of a software and made additional copies without the permission of the copyright owner. This act of hers is known as ______. 

Tradema.rk Infringement

Identity Theft

Copyright Infringement

Patent

Concept: undefined - undefined
Chapter:
[1]3

What can an individual do to enhance the privacy of data stored digitally? 

Share sensitive information on social media platforms.

Use your date of birth as your password.

Regularly update software installed on your device. 

Download and install software from unknown sources.

Concept: undefined - undefined
Chapter:
[1]4

What will be the output of the following query? 

SELECT POWER (2, MOD (17, 3)):

8

1

0

4

Concept: undefined - undefined
Chapter:
[1]5

Which of the following is not an aggregate function in MYSQL? 

AVG()

MAX()

LCASE()

MIN()

Concept: undefined - undefined
Chapter:
[1]6

______ is the gaining of unauthorized access to data in a computer system. 

Phishing

Plagiarism

Hacking

Copyright violation

Concept: undefined - undefined
Chapter:
[1]7

Which of the following is NOT true with respect to CSV files? 

Values are separated by commas.

to cvs() can be used to save a dataframe to a CSV file. 

CSV file is created using a word processor.

CSV file is a type of text file. 

Concept: undefined - undefined
Chapter:
[1]8

Which MySQL command helps to add a primary key constraint to any table that has already been created? 

UPDATE

INSERT INTO

ALTER TABLE

ORDER BY

Concept: undefined - undefined
Chapter:
[1]9

What will be the output of the following query?

SELECT SUBSTR ("G20 2023 INDIA", 5, 4);

G20 2

2023

INDI

023

Concept: undefined - undefined
Chapter:
[1]10

What will be the output of the following Python code?

import pandas as pd 
dd = {'One':1, 'Two':2, 'Three':3, 'Seven':7} 
rr = pd. Series (dd) 
rr ['Four'] = 4 
print (rr)

One 1
Two 2
Three 3
Seven 7
dtype: int64

One 1
Two 2
Three 3
Four 4
Seven 7
dtype: i.n64

Four 4
One 1
Two 2
Three 3
Seven 7
dtype: in64

One 1
Two 2
Three 3
Seven 7
Four 4
dtype: in64

Concept: undefined - undefined
Chapter:
[1]11

Which of the following clause cannot work with SELECT statement in MYSQL? 

FROM

INSERT INTO

WHERE

GROUP BY

Concept: undefined - undefined
Chapter:
[1]12

Which of the following cammand will not show first five rows from the Pandas series named S1?

S1 [0 : 5]

S1.head ()

S1.head (5)

S1.head [0 : 5]

Concept: undefined - undefined
Chapter:
[1]13

Rama was unable to understand how the recruiters were able to know about her digital activity when she has not shared anything with them.

The recruiters might have checked ______ of Rama. 

Carbon Footprint

Water Footprint

Online print

Digital Footprint

Concept: undefined - undefined
Chapter:
[1]14

Which MySQL string function is used to extract a substring from a given string based on a specified starting position and length? 

SUBSTRING_INDEX()

LENGTH()

MID()

TRIM()

Concept: undefined - undefined
Chapter:
[1]15

The software that is free for anyone, and its source code is available for access, modification correction, and improvement is called ______.

Proprietary software

Commercial software

Free and Open source software

Copyrighted software 

Concept: undefined - undefined
Chapter:
[1]16

______ help in data protection through copyrights, patents and trademarks.

Data Privacy Right

Right to Innovation

Intellectual Property Rights (IPR)

Right to Data Protection

Concept: undefined - undefined
Chapter:
[1]17

Assertion (A): Cyber Bullying can have serious, emotional and psychological effects on victims.

Reason (R): Online Bullying is not a crime while offline bullying is a crime.

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): A Series is a one dimensional array and a DataFrame is a two-dimensional array containing sequence of values of any data type. (int, float, list, string, etc.) 

Reason (R): Both Series and DataFrames have by default numeric indexes starting from zero. 

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:
SECTION - B
[2]19
[2]19.a

Expand URL, Identify the protocol and domain in the following URL:

https://epathshala.nic.in/topics.php?len=en 

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

List one advantage of star topology. 

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

List one disadvantage of star topology.

Concept: undefined - undefined
Chapter:
[2]20

The Python code written below has syntactical errors. Rewrite the correct code and underline the correction(s) made.

import Pandas as pd
stud=['Name':'Ramya','Class':11, 'House':'Red']
s=p.Series(s)
print(s)
Concept: undefined - undefined
Chapter:
[2]21
[1]21.a

What will be the output of the following SQL query:

SELECT RIGHT ("CHANDRAYAN3", 4);

Concept: undefined - undefined
Chapter:
[1]21.b

What will be the output of the following SQL query:

SELECT ROUND (76345.456, 2)

Concept: undefined - undefined
Chapter:
[2]22

Find the output of the following Python code: 

import pandas as pd 
com=pd.Series([45, 12, 15, 200], index = ['mouse', 'printer', 'webcam', 'keyboard']) 
print (com[1:3])
Concept: undefined - undefined
Chapter:
[2]23

What is the primary function of a gateway in a computer network? Explain briefly.

Concept: undefined - undefined
Chapter:
[2]24

Consider the following Python code:

import pandas as pd
S1=pd.Series(['Rubina', 'Jaya', 'Vaibhav'], index=[10, 16, 18])
S2=pd.Series(______, index= (10, 16 18])
S3=pd.Series([56, 67, 86], ______)
xiia={'Name': ______,'Subject': S2, 'Marks': S3}
df=pd.DataFrame (______)
print(df)

Complete the above Python code to display the following output:

  Name Subject Marks
10 Rubina IP 56
16 Jaya HSc 67
18 Vaibhav IP 86
Concept: undefined - undefined
Chapter:
[2]25

Write any two differences between UPDATE and ALTER TABLE commands of MySQL. 

Concept: undefined - undefined
Chapter:
SECTION - C
[3]26
[3]26.a

Consider the given table and write the following queries in MySQL:

Table : Sports

Sid SName Fees DateofPlay CoachId
1 Karate 1200 2024-08-24 S1
2 Football 1800 2024-09-13 S2
3 Cricket 1500 2024-06-14 S3
4 Lawn Tennis 2500 2024-09-25 S4
5 Badminton 1800 2024-10-20 S5
  1. To display Sid and name of those sports which are to be played in the month of September.
  2. To display all Sports names in lower case.
  3. To display last two characters of all sports names whose fees is less than 1500.
Concept: undefined - undefined
Chapter:
OR
[3]26.b
Advertisements
[1]26.b.i

Predict the output of the following query based on the table Sports given below:

Table: Sports 

Sid SName Fees DateofPlay CoachId
1 Karate 1200 2024-08-24 S1
2 Football 1800 2024-09-13 S2
3 Cricket 1500 2024-06-14 S3
4 Lawn Tennis 2500 2024-09-25 S4
5 Badminton 1800 2024-10-20 S5

SELECT UCASE(TRIM(SName)) FROM Sports WHERE Sid=5;

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

Predict the output of the following query based on the table Sports given below:

Table: Sports 

Sid SName Fees DateofPlay CoachId
1 Karate 1200 2024-08-24 S1
2 Football 1800 2024-09-13 S2
3 Cricket 1500 2024-06-14 S3
4 Lawn Tennis 2500 2024-09-25 S4
5 Badminton 1800 2024-10-20 S5

SELECT LEFT (SName, 3) FROM Sports WHERE DateofPlay>"2024-09-13"; 

Concept: undefined - undefined
Chapter:
[1]26.b.iii

Predict the output of the following query based on the table Sports given below:

Table: Sports 

Sid SName Fees DateofPlay CoachId
1 Karate 1200 2024-08-24 S1
2 Football 1800 2024-09-13 S2
3 Cricket 1500 2024-06-14 S3
4 Lawn Tennis 2500 2024-09-25 S4
5 Badminton 1800 2024-10-20 S5

SELECT SUBSTR (CoachId,1) FROM Sports WHERE SName="Cricket" or Fees>=2000; 

Concept: undefined - undefined
Chapter:
[3]27

Kabir, a data analyst, has stored the voter's name and age in a dictionary. Now, Kabir wants to create a list of dictionaries to store data of multiple voters. He also wants to create a DataFrame from the same list of dictionaries having appropriate row labels as shown below: 

  Voter_Name Voter_Age
Ar1001 Arjun 35
Ba3002 Bala 23
Go4002 Govind 25
Dh4007 Dhruv 19
Na6005 Navya 18 

Help Kabir in writing a Python program to complete the task.

Concept: undefined - undefined
Chapter:
[3]28

Answer the following questions based on the table Salesman given below: 

                             Table: Salesman

salesman_id name city commission
5001 Neil Bhatt Delhi 0.15
5002 Rohan Malik Mumbai 0.13
5005 Ravi Mohan Delhi 0.11
5006 Mehak Rai Delhi 0.14
5007 Pual lal Bangalore 0.13
5003 Raman Sen Kolkata 0.12
  1. How many tuples does the given table have?
  2. Suggest the primary key for the given table.
  3. Write the MySQL query to display all the records in descending order of commission. 
Concept: undefined - undefined
Chapter:
[3]29
[3]29.a

Police officials arrested four members of an interstate gang for allegedly duping many people from different states on the pretext of providing them with holiday packages after creating fake websites of Tours and Travels. The cyber criminals sent fraudulent emails containing links to fraudulent websites created by them.

The victim in his complaint told police that he was offered a holiday package to Dubai for a total of 10 times in the next 10 years and was charged ₹ 1.45 lakh through his credit card.

Answer the following questions pertaining to the given news byte:

  1. Identify the type of cybercrime mentioned in above case.
  2. Which Act deals with such crimes in India?
  3. Suggest any one precaution that can be taken to avoid falling prey to such criminals. 
Concept: undefined - undefined
Chapter:
OR
[3]29.b

ABC Electronics, a popular electronics retail chain, has been a prominent player in the market for years. However, recent concerns over environmental degradation and e-waste have prompted the company to rethink its strategies and practices. As the newly appointed sustainability manager, you've been asked to answer the following questions:

  1. Considering the environmental concerns associated with e-waste, outline any one negative impact of the electronic products on the environment. 
  2. Gopal is a college student who recently bought his smartphone from ABC electronics. He's excited about the new features and improved performance of his new device. However, he’s now left with his old smartphone, which is still functional but considered outdated. Suggest him any one action that he can take for his old smartphone.
  3. Provide any one recommendation on how ABC Electronics can responsibly manage its e-waste while minimizing harm to the environment.
Concept: undefined - undefined
Chapter:
[3]30

Consider the given DataFrame 'password':

  CodeName Category Frequency
0 aaaaaa alpha 6.91
1 dragon animal 18.52
2 baseball sport 1.29
3 football sport 11.11
4 monkey animal 3.72
5 qwerty alpha 1.85
6 abcde alpha 3.19 

Write suitable Python statements for the following:

  1. To add a new row with following values:
    CodeName – 'abc123'
    Category – alphanumeric
    Frequency – 12.8
  2. To delete the row with the row label 2.
  3. To delete the column having column label as Frequency.
Concept: undefined - undefined
Chapter:
SECTION - D
[4]31

Rupam created a MySQL table to store the details of Nobel prize winners. Help her to write the following MySQL queries: 

                                                      TABLE: NOBEL

Winner_Id YEAR SUBJECT WINNER COUNTRY CATEGORY
1001 1970 Physics Hannes Alfven  Sweden Scientist
1002 1970 Physiology Bernard Katz NULL Scientist
1003 1970 Literature Aleksandr Solzhenitsyn Russia Linguist
1004 1971 Chemistry Gerhard Herzberg Germany Scientist
1005 1978 Peace Menachem Begin Israel Prime Minister
1006 1987 Economics Robert Solow USA Economist
1007 1994 Literature Kenzaburo Oe Japan Linguist
  1. Display the names of Nobel Prize winner in 'Literature' for the year 1970.
  2. Display the subject and category of winners whose country is not known.
  3. Display the details of all Nobel Prize winners who were Scientists.
  4. Count total number of winners whose subject is Literature.
Concept: undefined - undefined
Chapter:
[4]32

Ms. Ritika conducted an online assessment and stored the details in a DataFrame result as given below: 

  Name Score Attempts Qualify
a Atulya 12.5 1 yes
b Disha 9.0 3 no
c Kavita 16.5 2 yes
d John 15.0 1 no

Answer the following questions:

  1. Predict the output of the following Python, statement:
    print(result.loc [:, 'Attempts'] > 1)
  2. Write python statement to display the last three records.
  3. Write python statement to display records of 'a' and 'd row labels. 
                                        OR 
    Write suitable Python statement to retrieve the data stored in the file, 'registration.csv' into a DataFrame, 'regis'
Concept: undefined - undefined
Chapter:
SECTION - E
[5]33
[5]33.a

Excellent Consultancy Pvt.Ltd. maintains two tables for all its employees. 

                                                  Table : Employee

Employee_id First_name Last_name Salary Joining_date Department
E101 Monika Das 100000 2019-01-20 Finance
E102 Mehek Verma 600000 2019-01-15 IT
E103 Manan Pant 890000 2019-02-05 Banking
E104 Shivam Agarwal 200000 2019-02-25 Insurance
E105 Alisha Singh 220000 2019-02-28 Finance
E106 Poonam Sharma 400000 2019-05-10 IT
E107 Anshuman Mishra 123000 2019-06-20 Banking

Table : Reward

Employee_id Date_reward Amount
E101 2019-05-11 1000
E102 2019-02-15 5000
E103 2019-04-22 2000
E106 2019-06-20 8000

Write suitable SQL queries to perform the following task:

  1. Change the Department of Shivam to IT in the table Employee.
  2. Remove the record of Alisha from the table Employee.
  3. Add a new column Experience of integer type in the table Employee.
  4. Display the first name, last name and amount of reward for all employees from the tables Employee and Reward.
  5. Display first name and salary of all the employees whose amount is less than 2000 from the tables Employee and Reward.
Concept: undefined - undefined
Chapter:
OR
[5]33.b

Excellent Consultancy Pvt.Ltd. maintains two tables for all its employees. 

                                               Table : Employee

Employee_id First_name Last_name Salary Joining_date Department
E101 Monika Das 100000 2019-01-20 Finance
E102 Mehek Verma 600000 2019-01-15 IT
E103 Manan Pant 890000 2019-02-05 Banking
E104 Shivam Agarwal 200000 2019-02-25 Insurance
E105 Alisha Singh 220000 2019-02-28 Finance
E106 Poonam Sharma 400000 2019-05-10 IT
E107 Anshuman Mishra 123000 2019-06-20 Banking

Table: Reward 

Employee_id Date_reward Amount
E101 2019-05-11 1000
E102 2019-02-15 5000
E103 2019-04-22 2000
E106 2019-06-20 8000

Write suitable SQL queries to perform the following task:

  1. Display the year of joining of all the employees from the table Employee.
  2. Display each department name and its corresponding average salary.
  3. Display the first name and date of reward of those employees who joined on Monday from the tables Employee and Reward.
  4. Display sum of salary of those employees whose reward amount is greater than 3000 from the tables Employee and Reward.
  5. Remove the table Reward
Concept: undefined - undefined
Chapter:
[5]34

FULLMAN Tech, Bengaluru is a company that deals with software development. They nave different divisions HR (H1), Sales (H2), Production (H3) and Marketing (H4). The layout of the Bengaluru branch is: 

The management wants to connect all the divisions as well as all the computers of each division (H1, H2, H3 and H4). 

Distance between the divisions are as follows:

H1 to H2 76 m
H1 to H3 185 m
H1 to H4 88 m
H2 to H3 140 m
H2 to H4 125 m
H3 to H4 160 m

Number of computers in each of the division:

Division Number of Computers
H1 140
H2 340
H3 180
H4 260

Based on the above specifications, answer the following questions:

  1. Suggest the topology and draw the most efficient cable layout for connecting all the divisions of Bengaluru branch.
  2. FULLMAN Tech is expanding its reach and therefore it establishes a new office in Delhi. Out of LAN, MAN, and WAN what kind of network will be created to connect Bengaluru office with Delhi Office?
  3. Suggest the division for the placement of server in Bengaluru branch. Explain the reason for your selection. 
  4. Suggest the placement of the following devices in Bengaluru branch: 
    1. Repeater
    2. Switch/Hub
  5. The company's manager Ms. Ritu is worried as to how she can extend and modify the functionality of the web browser. Help her by giving names of any two tools. 
Concept: undefined - undefined
Chapter:
[5]35
[5]35.a

The inventory mangement software of a grocery shop stores the price of all fruits as follows:

Fruits=[ 'Apple', ‘Guava’, ‘Papaya’, ‘Grapes’, 'Mango']
Price=[150, 70, 50, 30, 120]

Write suitable Python code to generate a Bar Chart on the given data. Also add the chart title and label for X and Y axis. Also add suitable statement to save this chart with the name fruits.png.

Concept: undefined - undefined
Chapter:
OR
[5]35.b

Write suitable Python code to draw the following line chart "\[\ce{CO2}\] Emission" having title and label for X and Y axis as shown below.

Also give suitable Python statement to save this chart with the name, emission.pug.

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 2023 - 2024

     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 2024 serve as a catalyst to prepare for your Informatics Practices board examination.
     Previous year Question paper for CBSE Class 12 Informatics Practices-2024 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×