English

Informatics Practices Board Sample Paper 2024-2025 Commerce (English Medium) Class 12 Question Paper Solution

Advertisements
Informatics Practices [Board Sample Paper]
Marks: 70 CBSE
Commerce (English Medium)
Science (English Medium)
Arts (English Medium)

Academic Year: 2024-2025
Date: March 2025
Advertisements

General Instructions:

  • Please check this question paper contains 37 questions.
  • All questions are compulsory. However, internal choices have been provided in some questions. Attempt only one of the choices in such questions.
  • The paper is divided into 5 Sections- A, B, C, D and E.
  • Section A consists of 21 questions (1 to 21). Each question carries 1 Mark.
  • Section B consists of 7 questions (22 to 28). Each question carries 2 Marks.
  • Section C consists of 4 questions (29 to 32). Each question carries 3 Marks.
  • Section D consists of 2 case study type questions (33 to 34). Each question carries 4 Marks.
  • Section E consists of 3 questions (35 to 37). Each question carries 5 Marks.
  • All programming questions are to be answered using Python Language only.
  • In case of MCQ, text of the correct answer should also be written.

Section - A (21 Marks)
[1]1 | State whether the following statement is True or False:

Slicing can be used to extract a specific portion from a Pandas Series. 

True

False

Concept: undefined - undefined
Chapter:
[1]2

The purpose of WHERE clause in a SQL statement is to ______.

Create a table.

Filter rows based on a specific condition.

Specify the columns to be displayed.

Sort the result based on a column. 

Concept: undefined - undefined
Chapter:
[1]3

Identify the networking device responsible for routing data packets based on their destination addresses. 

Modem

Hub

Repeater

Router

Concept: undefined - undefined
Chapter:
[1]4

Identify the SQL command used to delete a relation (table) from a relational database.

DROP TABLE 

REMOVE TABLE

DELETE TABLE

ERASE TABLE 

Concept: undefined - undefined
Chapter:
[1]5

E-waste refers to ______.

Software that has become obsolete.

Data that has been deleted from a storage device.

Viruses that infect computers.

Electronic devices that are no longer in use.

Concept: undefined - undefined
Chapter:
[1]6

Which of the following Python statements can be used to select a column column_name from a DataFrame df ?

df.getcolumn('column_name')

df['column_name']

df.select('column_name')

df(column_name) 

Concept: undefined - undefined
Chapter:
[1]7

By default, the plot() function of Matplotlib draws a ______ plot.

Histogram

Column

Bar

Line

Concept: undefined - undefined
Chapter:
[1]8 | State whether the following statement is True or False:

In SQL, the HAVING clause is used to apply filter on groups formed by the GROUP BY clause. 

True

False

Concept: undefined - undefined
Chapter:
[1]9

Which of the following Python statements is used to import data from a CSV file into a Pandas DataFrame (Note: pd is an alias for pandas)? 

pd.open_csv('filename.csv') 

pd.read_csv('filename.csv')

pd.load_csv('filename.csv')

pd.import_csv('filename.csv') 

Concept: undefined - undefined
Chapter:
[1]10

What is plagiarism? 

Using copyrighted material without giving proper acknowledgement to the source.

Downloading illegal software.

Spreading misinformation online.

Hacking into computer systems.

Concept: undefined - undefined
Chapter:
[1]11 | Fill in the blank

The COUNT(*) function provides the total number of ______ within a relation (table) in a relational database.

Columns

Unique values

Not-null values

Rows

Concept: undefined - undefined
Chapter:
[1]12

In which of the network topologies do all devices connect to a central point, such as a switch or hub? 

Star

Bus

Tree

Mesh

Concept: undefined - undefined
Chapter:
[1]13

In a Pandas DataFrame, if the tail() function is used without specifying the optional argument indicating the number of rows to display, what is the default number of rows displayed, considering the DataFrame has 10 entries? 

0

1

4

5

Concept: undefined - undefined
Chapter:
[1]14

Identify the type of cybercrime that involves sending fraudulent emails to deceive individuals into revealing sensitive information.

Hacking

Phishing

Cyberbullying

Cyberstalking

Concept: undefined - undefined
Chapter:
[1]15

While creating a Series using a dictionary, the keys of the dictionary become _______.

Values of the Series

Indices of the Series

Data type of the Series

Name of the Series 

Concept: undefined - undefined
Chapter:
[1]16

Match the following SQL functions/clauses with their descriptions:

SQL Function Description
P. MAX() 1. Find the position of a substring in a string.
Q. SUBSTRING() 2. Returns the maximum value in a column.
R. INSTR() 3. Sorts the data based on a column.
S. ORDER BY 4. Extracts a portion of a string.

P - 2, Q - 4, R - 3, S - 1

P - 2, Q - 4, R - 1, S - 3

P - 4, Q - 3, R - 2, S - 1

P - 4, Q - 2, R - 1, S - 3

Concept: undefined - undefined
Chapter:
[1]17 | Fill in the Blank:

Boolean indexing in Pandas DataFrame can be used for ______.

Creating a new DataFrame.

Sorting data based on index labels.

Joining data using labels.

Filtering data based on condition.

Concept: undefined - undefined
Chapter:
[1]18

Which Matplotlib plot is best suited to represent changes in data over time?

Bar plot

Histogram

Line plot

Histogram & Bar plot

Concept: undefined - undefined
Chapter:
[1]19

Which type of network covers a small geographical area like a single office, building, or school campus?

PAN

MAN

LAN

WAN

Concept: undefined - undefined
Chapter:
[1]20 | Q-20 and Q-21 are Assertion (A) and Reason (R) Type questions. Choose the correct option as:

Assertion (A): We can add a new column in an existing DataFrame.

Reason (R): DataFrames are size mutable.

Both Assertion (A) and Reason (R) are true, and Reason (R) is the correct explanation of Assertion (A). 

Both Assertion (A) and Reason (R) are true, but Reason (R) is not the correct explanation of Assertion (A).

Assertion (A) is True, but Reason (R) is False.

Assertion (A) is False, but Reason (R) is True.

Concept: undefined - undefined
Chapter:
[1]21

Assertion (A): In SQL, INSERT INTO is a Data Definition Language (DDL) Command. 

Reason (R): DDL commands are used to create, modify, or remove database structures, such as tables. 

Both Assertion (A) and Reason (R) are true, and Reason (R) is the correct explanation of Assertion (A).

Both Assertion (A) and Reason (R) are true, but Reason (R) is not the correct explanation of Assertion (A).

Assertion (A) is True, but Reason (R) is False.

Assertion (A) is False, but Reason (R) is True.

Concept: undefined - undefined
Chapter:
Advertisements
Section - B (14 Marks)
[2]22
[2]22.A

What is a Series in Python Pandas? Also, give a suitable example to support your answer. 

Concept: undefined - undefined
Chapter:
OR
[2]22.B
[1]22.B.i

What does the term 'library' signify in Python? 

Concept: undefined - undefined
Chapter:
[1]22.B.ii

Mention one use of the following library:

Pandas

Concept: undefined - undefined
Chapter:

Mention one use of the following library:

Matplotlib

Concept: undefined - undefined
Chapter:
[2]23

What do you understand by the term Intellectual property right? Discuss briefly.

Concept: undefined - undefined
Chapter: [0.06] Societal Impacts

Why are intellectual property rights (IPR) important in the digital world?  

Concept: undefined - undefined
Chapter:
[2]24
[1]24.A

Consider the string: "Database Management System". Write suitable SQL query for the following: 

To extract and display "Manage" from the string.

Concept: undefined - undefined
Chapter:
[1]24.B

Consider the string: "Database Management System". Write suitable SQL query for the following:

Display the position of the first occurrence of "base" in the given string. 

Concept: undefined - undefined
Chapter:
[2]25
[2]25.A

What is the Internet?

Concept: undefined - undefined
Chapter: [0.05] Internet and Web

How does internet differ from World Wide Web (WWW)?

Concept: undefined - undefined
Chapter:
OR
[2]25.B

Explain the concept of browser cookies.

Concept: undefined - undefined
Chapter:

Mention one advantage of using browser cookies.

Concept: undefined - undefined
Chapter:
[2]26

Define the term Primary Key in a database. 

Concept: undefined - undefined
Chapter:

Explain how Primary key is different from a Candidate Key. 

Concept: undefined - undefined
Chapter:
[2]27

Mention two health concerns associated with excessive use of Digital Devices. 

Concept: undefined - undefined
Chapter:
[2]28
[2]28.A

Sneha is writing a Python program to create a DataFrame using a list of dictionaries. However, her code contains some mistakes. Identify the errors, rewrite the correct code, and underline the corrections made.

import Pandas as pd
D1 = {'Name': 'Rakshit', 'Age': 25}
D2 = {'Name': 'Paul', 'Age': 30}
D3 = {'Name': 'Ayesha", 'Age': 28}
data = [D1, D2, D3)
df = pd.Dataframe(data)
print(df) 
Concept: undefined - undefined
Chapter:
OR
[2]28.B

Complete the given Python code to get the required output (ignore the dtype attribute) as

Output:

Tamil Nadu     Chennai
Uttar Pradesh   Lucknow
manipur         Imphal

Code:

import _______ as pd
data = ['Chennai','_______','Imphal']
indx = ['Tamil Nadu','Uttar Pradesh','Manipur']
s = pd.Series(_______, indx)
print(_______)
Concept: undefined - undefined
Chapter:
Section - C (12 Marks)
[3]29

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. 

  1. Explain any one potential environmental hazard associated with improper e-waste disposal.
  2. Suggest one responsible way to Ayesha's family for proper disposal of their old computer.
  3. Describe the importance of recycling in e-waste management. 
Concept: undefined - undefined
Chapter:
[3]30
[3]30.A

Write a Python programme to create the following DataFrame using a list of dictionaries. 

  Product Price
0 Laptop 60000
1 Desktop 45000
2 Monitor 15000
3 Tablet 30000
Concept: undefined - undefined
Chapter:
OR
[3]30.B

Write a Python Program to create a Pandas Series as shown below using a dictionary. Note that the left column indicates the indices and the right column displays the data. 

Russia Moscow
Hungary Budapest
Switzerland Bern
Concept: undefined - undefined
Chapter:
Advertisements
[3]31

I. Write an SQL statement to create a table named STUDENTS, with the following specifications: 

Column Name Data Type Key
StudentID Numeric Primary Key
FirstName Varchar(20)  
LastName Varchar(10)  
DateOfBirth Date  
Percentage Float(10,2)  

II. Write SQL Query to insert the following data in the Students Table 1, Supriya, Singh, 2010-08-18, 75.5.

Concept: undefined - undefined
Chapter:
[3]32
[3]32.A

Consider the following tables:

Table 1:
EMPLOYEE which stores Employee ID (EMP_ID), Employee Name (EMP_NAME), Employee City (EMP_CITY).

Table 2:
PAYROLL which stores Employee ID (EMP_ID), Department (DEPARTMENT), Designation (DESIGNATION), and Salary (SALARY) for various employees. 

Note: Attribute names are written within brackets.

Table: EMPLOYEE

EMP_ID EMP_NAME EMP_CITY
1 ABHINAV AGRA
2 KABIR FARIDABAD
3 ESHA NOIDA
4 PAUL SEOUL
5 VICTORIA LONDON

Table: PAYROLL

EMP_ID DEPARTMENT DESIGNATION SALARY
1 SALES MANAGER 75000
2 SALES ASSOCIATE 50000
3 ENGINEERING MANAGER 95000
4 ENGINEERING ENGINEER 70000
5 MARKETING MANAGER 65000

Write appropriate SQL queries for the following:

  1. Display department-wise average Salary.
  2. List all designations in the decreasing order of Salary.
  3. Display employee name along with their corresponding departments.
Concept: undefined - undefined
Chapter:
OR
[3]32.B

Consider the following tables:

Table 1: 
ATHLETE, which stores AthleteID, Name, Country. The table displays basic information of the athletes.

Table 2: 
MEDALS, which stores AthleteID, Sport, and Medals. The table displays the number of medals won by each athlete in their respective sports.

Table: ATHLETE 

AthleteID Name COUNTRY
101 Arjun INDIA
102 Priya INDIA
103 Asif UAE
104 Rozy USA
105 David DENMARK

Table: MEDALS

AthleteID Sport Medals
101 Swimming 8
102 Track 3
103 Gymnastics 5
104 Swimming 2
105 Track 6

Write appropriate SQL queries for the following:

  1. Display the sports-wise total number of medals won.
  2. Display the names of all the Indian athletes in uppercase.
  3. Display the athlete name along with their corresponding sports.
Concept: undefined - undefined
Chapter:
Section - D (8 Marks)
[4]33

During a practical exam, a student Ankita has to fill in the blanks in a Python program that generates a bar chart. This bar chart represents the number of books read by four students in one month. 

Student Name Books Read
Karan 12
Lina 9
Raj 5
Simran 3

Help Ankita to complete the code.

import _____ as plt #Statement-1
students = ['Karan', 'Lina', 'Raj', 'Simran']
books_read = [12, 9, 5, 3]
plt.bar( students, _____, label='Books Read') #Statement-2
plt.xlabel('Student Name')
plt._____('Books Read') #Statement-3
plt.legend()
plt.title('_____') #Statement-4
plt.show()
  1. Write the suitable code for the import statement in the blank space in the line marked as Statement-1.
  2. Refer to the graph shown above and fill in the blank in Statement-2 with suitable Python code.
  3. Fill in the blank in Statement-3 with the name of the function to set the label on the y-axis. 
  4. Refer the graph shown above and fill the blank in Statement-4 with suitable Chart Title. 
Concept: undefined - undefined
Chapter:
[4]34
[4]34.A

Rahul, who works as a database designer, has developed a database for a bookshop. This database includes a table BOOK whose column (attribute) names are mentioned below: 

BCODE: Shows the unique code for each book.
TITLE: Indicates the book’s title.
AUTHOR: Specifies the author’s name.
PRICE: Lists the cost of the book.

Table: BOOK

BCODE TITLE AUTHOR PRICE
B001 MIDNIGHT'S CHILDREN SALMAN RUSHDIE 500
B002 THE GOD OF SMALL THINGS ARUNDHATI ROY 450
B003 A SUITABLE BOY VIKRAM SETH 600
B004 THE WHITE TIGER ARAVIND ADIGA 399
B005 TRAIN TO PAKISTAN KHUSHWANT SINGH 350
  1. Write SQL query to display book titles in lowercase.
  2. Write SQL query to display the highest price among the books.
  3. Write SQL query to display the number of characters in each book title.
  4. Write SQL query to display the Book Code and Price sorted by Price in descending order. 
Concept: undefined - undefined
Chapter:
OR
[4]34.B

Dr. Kavita has created a database for a hospital's pharmacy. The database includes a table named MEDICINE whose column (attribute) names are mentioned below: 

MID: Shows the unique code for each medicine.
MED_NAME: Specifies the medicine name.
SUPP_CITY: Specifies the city where the supplier is located.
STOCK: Indicates the quantity of medicine available.
DEL_DATE: Specifies the date when the medicine was delivered.

Table: MEDICINE

MID MED_NAME SUPP_CITY STOCK DEL_DATE
M01 PARACETAMOL MUMBAI 200 2023-06-15
M02 AMOXICILLIN KOLKATA 50 2023-03-21
M03 COUGH SYRUP BENGALURU 120 2023-02-10
M04 INSULIN CHENNAI 135 2023-01-25
M05 IBUPROFEN AHMEDABAD 30 2023-04-05 

Write the output of the following SQL Queries.

  1. Select LENGTH(MED_NAME) from MEDICINE where STOCK > 100;
  2. Select MED_NAME from MEDICINE where month(DEL_DATE) = 4;
  3. Select MED_NAME from MEDICINE where STOCK between 120 and 200;
  4. Select max(DEL_DATE) from MEDICINE;
Concept: undefined - undefined
Chapter:
Section - E (15 Marks)
[5]35

ABC Pvt. Ltd., a multinational technology company, is looking to establish its Indian Head Office in Bengaluru, and a regional office branch in Lucknow. The Bengaluru head office will be organized into four departments: HR, FINANCE, TECHNICAL, AND SUPPORT. As a network engineer, you have to propose solutions for various queries listed from I to V. 

The shortest distances between the departments/offices are as follows:

HR TO FINANCE 65 M
HR TO TECHNICAL 80 M
HR TO SUPPORT 70 M
FINANCE TO TECHNICAL 60 M
FINANCE TO SUPPORT 75 M
TECHNICAL TO SUPPORT 50 M
BENGALURU OFFICE TO LUCKNOW 1900 KM

The number of computers in each department/office is as follows:

HR 175
FINANCE 35
TECHNICAL 50
SUPPORT 15
LUCKNOW OFFICE 40
  1. Suggest the most suitable department in the Bengaluru Office Setup, to install the server. Also, give a reason to justify your suggested location.
  2. Draw a suitable cable layout of wired network connectivity between the departments in the Bengaluru Office.
  3. Which networking device would you suggest the company to purchase to interconnect all the computers within a department in Bengaluru Office?
  4. The company is considering establishing a network connection between its Bengaluru Head Office and Lucknow regional office. Which type of network—LAN, MAN, or WAN—will be created? Justify your answer.
  5. The company plans to develop an interactive website that will enable its employees to monitor their performance after login. Would you recommend a static or dynamic website, and why?
Concept: undefined - undefined
Chapter:
[5]36

Consider the DataFrame df shown below.

  MovieID Title Year Rating
0 1 LAGAAN 2001 8.4
1 2 TAARE ZAMEEN PAR 2007 8.5
2 3 3 IDIOTS 2009 8.4
3 4 DANGAL 2016 8.4
4 5 ANDHADHUN 2018 8.3

Write Python statements for the DataFrame df to:

  1. Print the first two rows of the DataFrame df.
  2. Display titles of all the movies.
  3. Remove the column rating.
  4. Display the data of the 'Title' column from indexes 2 to 4 (both included).
  5. Rename the column name 'Title' to 'Name'.
Concept: undefined - undefined
Chapter:
[5]37
[5]37.A
[1]37.A.i

Write suitable SQL query for the following: 

To display the average score from the test_results column (attribute) in the Exams table. 

Concept: undefined - undefined
Chapter:
[1]37.A.ii

Write suitable SQL query for the following:

To display the last three characters of the registration_number column (attribute) in the Vehicles table. (Note: The registration numbers are stored in the format DL-01-AV-1234).

Concept: undefined - undefined
Chapter:
[1]37.A.iii

Write suitable SQL query for the following:

To display the data from the column (attribute) username in the Users table, after eliminating any leading and trailing spaces.

Concept: undefined - undefined
Chapter:
[1]37.A.iv

Write suitable SQL query for the following:

To display the maximum value in the salary column (attribute) of the Employees table.

Concept: undefined - undefined
Chapter:
[1]37.A.v

Write suitable SQL query for the following:

To determine the count of rows in the Suppliers table.

Concept: undefined - undefined
Chapter:
OR
[5]37.B
[1]37.B.i

Write suitable SQL query for the following:

Round the value of pi (3.14159) to two decimal places. 

Concept: undefined - undefined
Chapter:
[1]37.B.ii

Write suitable SQL query for the following:

Calculate the remainder when 125 is divided by 8.

Concept: undefined - undefined
Chapter:
[1]37.B.iii

Write suitable SQL query for the following:

Display the number of characters in the word 'NewDelhi'.

Concept: undefined - undefined
Chapter:
[1]37.B.iv

Write suitable SQL query for the following:

Display the first 5 characters from the word 'Informatics Practices'.

Concept: undefined - undefined
Chapter:
[1]37.B.v

Write suitable SQL query for the following:

Display details from 'email' column (attribute), in the 'Students' table, after removing any leading and trailing spaces

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

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