CBSE Class 12 Informatics Practices 2024-25 Sample Paper: A Comprehensive Guide

The Central Board of Secondary Education (CBSE) has released the sample papers on 5th September 2024 for Informatics Practices for Class 12 for the 2024-25 academic year. As students prepare for their board exams, these sample papers serve as an essential tool to help them to understand the exam pattern, types of questions, and marking schemes.

In this article, I’ll walk you through the key details of the sample paper and offer some tips to make the most of it during your preparation.

Overview of the CBSE Class 12 Informatics Practices 2024-25 Sample Paper

  • The Class 12 Informatics Practices sample paper is designed to cover all the essential topics from the curriculum.
  • The paper is divided into five sections (A,B,C,D,E), testing the theoretical understanding as well as practical knowledge of students.
  • Here’s a quick breakdown:
  1. Section A: Multiple-Choice Questions (1 Marks Questions) – This section typically comprises questions that test the conceptual understanding of various topics, including Python programming, databases, data visualization, and networking. There are 21 questions including MCQs, True or False, and Assertion and reasoning questions ranging from 1 to 21.
  2. Section B: Short Answer Questions ( 2 marks questions) – These questions require concise, detailed responses, focusing on practical applications and conceptual clarity. Question 22 to 28 are 2 marks questions.
  3. Section C: Short Answer Questions ( 3 marks questions) – These questions requires practical knowledge on Pandas, Matplotlib and MySQL. Question 29 to 32 are 3 marks questions.
  4. Section D: Long Answer Questions: (4 marks questions) – These questions are based on case studies. There are two questions: 33 and 34.
  5. Section C: Long Answer Questions (5 marks questions) – This section focuses on problem-solving skills, coding challenges, and in-depth understanding of database management and data analytics. There are 3 questions, 35 to 37.

Question wise Blueprint – CBSE Class 12 Informatics Practices 2024-25 Sample Paper

Here I am embedding the PDF for questions wise blue print:

Chapter Wise weightage – According to Sumita Arora Textbook

This PDF contains chapter wise weightage according to Sumita Arora textbook for Informatics Practices class 12.

Key Topics Covered in the Sample Paper

The sample paper for 2024-25 emphasizes the following core areas:

  • Python Programming: Expect questions on basic and advanced Python concepts, including functions, file handling, libraries like NumPy and Pandas, and error handling.
  • Data Handling & Visualization: Data manipulation with Pandas, creating data frames, data cleaning, and data visualization using Matplotlib are crucial topics.
  • Database Management: SQL queries, database operations (CRUD), joins, and aggregation functions form the backbone of this section. Understanding relational databases and how to interact with them using Python is key.
  • Computer Networks: Networking fundamentals like protocols, topologies, IP addressing, and security measures are also tested in the exam.
  • Societal Impacts of Technology: Ethical issues related to technology, privacy concerns, data protection laws, and cybercrime prevention are vital theoretical questions.

Marking Scheme

  • The paper is typically worth 70 marks.
  • Section A (MCQs) carries 1 mark per question.
  • Section B (Short Answer) may range from 2-3 marks per question, depending on the complexity.
  • Section C (Long Answer) can be valued at 4-5 marks per question, testing the depth of your understanding and application skills.

Understanding the weightage of each section helps in organizing your study time effectively. Pay attention to high-mark questions in Sections B and C, as they can significantly impact your overall score.

So let’s begin answer discussion for CBSE Class 12 Informatics Practices 2024-25 Sample Paper.

Section A – CBSE Class 12 Informatics Practices 2024-25 Sample Paper

Section A contains 21 questions of 1 marks. It includes MCQs, True or False and Fill in the blanks type questions. Here we go!

[1] State whether the following statement is True or False: Slicing can be used to extract a specific portion from a Pandas Series.

[2] The purpose of WHERE clause in a SQL statement is to:
(A) Create a table
(B) Filter rows based on a specific condition
(C) Specify the columns to be displayed
(D) Sort the result based on a column

[3] Identify the networking device responsible for routing data packets based on their destination addresses.
(A) Modem
(B) Hub
(C) Repeater
(D) Router

[4] Identify the SQL command used to delete a relation (table) from a relational database.
(A) DROP TABLE
(B) REMOVE TABLE
(C) DELETE TABLE
(D) ERASE TABLE

[5] e-waste refers to:
(A) Software that has become obsolete
(B) Data that has been deleted from a storage device
(C) Viruses that infect computers
(D) Electronic devices that are no longer in use

[6] Which of the following Python statements can be used to select a column column_name from a DataFrame df?
(A) df.getcolumn(‘column_name’)
(B) df[‘column_name’]
(C) df.select(‘column_name’)
(D) df(column_name)

[7] By default, the plot() function of Matplotlib draws a _____________ plot.
(A) histogram
(B) column
(C) bar
(D) line

[8] State whether the following statement is True or False:
In SQL, the HAVING clause is used to apply a filter on groups formed by the GROUP BY clause.

[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)?
(A) pd.open_csv(‘filename.csv’)
(B) pd.read_csv(‘filename.csv’)
(C) pd.load_csv(‘filename.csv’)
(D) pd.import_csv(‘filename.csv’)

[10] What is plagiarism?
(A) Using copyrighted material without giving proper acknowledgement to the source
(B) Downloading illegal software.
(C) Spreading misinformation online.
(D) Hacking into computer systems.

[11] Fill in the Blank: The COUNT(*) function provides the total number of ___________ within a relation (table) in a relational database.
(A) Columns
(B) Unique values
(C) Not-null values
(D) Rows

[12] In which of the network topologies do all devices connect to a central point, such as a switch or hub?
(A) Star
(B) Bus
(C) Tree
(D) Mesh

[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?
(A) 0
(B) 1
(C) 4
(D) 5

[14] Identify the type of cybercrime that involves sending fraudulent emails to deceive individuals into revealing sensitive information.
(A) Hacking
(B) Phishing
(C) Cyberbullying
(D) Cyberstalking

[15] While creating a Series using a dictionary, the keys of the dictionary become:
(A) Values of the Series

(B) Indices of the Series
(C) Data type of the Series
(D) Name of the Series

[16] Match the following SQL functions/clauses with their descriptions:

SQL FunctionDescriptions
Pmax()1 Find the position of a substring in a string.
Qsubstring()2 Returns the maximum value in a column.
Rinstr()3Sorts the data based on a column.
Sorder by4Extracts a portion of a string.

(A) P-2, Q-4, R-3, S-1
(B) P-2, Q-4, R-1, S-3
(C) P-4, Q-3, R-2, S-1
(D) P-4, Q-2, R-1, S-3

[17] Fill in the Blank: Boolean indexing in Pandas DataFrame can be used for _____________
(A) Creating a new DataFrame
(B) Sorting data based on index labels
(C) Joining data using labels
(D) Filtering data based on condition

[18] Which Matplotlib plot is best suited to represent changes in data over time?
(A) Bar plot
(B) Histogram
(C) Line plot
(D) Histogram & Bar plot

[19] Which type of network covers a small geographical area like a single office, building, or school campus?
(A) PAN
(B) MAN
(C) LAN
(D) WAN

Q-20 and Q-21 are Assertion (A) and Reason (R) Type questions. Choose the correct option as:

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

(C) Assertion (A) is True, but Reason (R) is False
(D) Assertion (A) is False, but Reason (R) is True

[20] Assertion (A): We can add a new column in an existing DataFrame.
Reason (R): DataFrames are size mutable.

[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.

Section B – CBSE Class 12 Informatics Practices 2024-25 Sample Paper

[22] (A) What is a Series in Python Pandas? Also, give a suitable example to support your answer.

OR

(B) What does the term ‘library’ signify in Python? Mention one use for each of the following libraries:

  1. Matplotlib
  2. Pandas

[23] What are intellectual property rights (IPR), and why are they important in the digital world?

[24] Consider the string: “Database Management System”. Write suitable SQL queries for the following:

  1. To extract and display “Manage” from the string.
  2. Display the position of the first occurrence of “base” in the given string.

[25] (A) What is Internet and how does it differ from World Wide Web (WWW)?

Internet is a public network provides the vast services of communication and data exchange.

InternetWWW
It is a public network of networksIt is a common system to navigate the internet.
Internet is hardware basedWWW is software based
Internet is governed by protocols such as IPWWW is governed by HTTP and links
It was started with the development of ARPANETIt was started by Tim Berner’s Lee
1 marks for each definition and 1 mark for difference

OR

(B) Explain the concept of browser cookies and mention one advantage of using them.

[26] Define the term Primary Key in a database. Explain how it is different from a Candidate Key.

Watch this video for more understanding about keys in SQL:

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

[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)

[B] Complete the given Python code to get the required output (ignore the dtype attribute) as Output:

Output

Tamil NaduChennai
Uttar PradeshLucknow
ManipurImphal

Code:

import __________ as pd
data = ['Chennai','____________','Imphal']
indx = ['Tamil Nadu','Uttar Pradesh','Manipur']
s = pd.Series(__________, indx)
print(_____________)

Section C – CBSE Class 12 Informatics Practices 2024-25 Sample Paper

[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.
I. Explain any one potential environmental hazard associated with improper e-waste disposal.
II. Suggest one responsible way to Ayesha’s family for proper disposal of their old computer.
III. Describe the importance of recycling in e-waste management.

[30] (A) Write a Python program to create the following DataFrame using a list of dictionaries.

ProductPrice
0Laptop60000
1Desktop45000
2Monitor15000
3Tablet30000

[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.

RussiaMoscow
HungaryBudapest
SwitzerlandBern

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

Column NameData TypeKey
StudentIDNumericPrimary Key
FirstNameVarchar(20)
LastNameVarchar(10)
DateofBirthDate
PercentageFloat(10,2)

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

[32] (A) Consider the following table:

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_IDEMP_NAMEEMP_CITY
1ABHINAVAGRA
2KABIRFARIDABAD
3ESHANOIDA
4PAULSEOUL
5VICTORIALONDON

Table: PAYROLL

EMP_IDDEPARTMENTDESIGNTATIONSALARY
1SALESMANAGER75000
2SALESASSOCIATE50000
3ENGINEERINGMANAGER95000
4ENGINEERINGENGINEER70000
5MARKETINGMANAGER65000

Write appropriate SQL queries for the following:
I. Display department-wise average Salary.
II. List all designations in the decreasing order of Salary.
III. Display employee name along with their corresponding departments.

OR

(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

AthleteIDNameCountry
101ArjunINDIA
102PriyaINDIA
103AsifUAE
104RozyUSA
105DavidDENMARK

Table: MEDALS

AtheletIDSportMedals
101Swimming8
102Track3
103Gymnastics5
104Swimming2
105Track6

Write appropriate SQL queries for the following:

I. Display the sports-wise total number of medals won.
II. Display the names of all the Indian athletes in uppercase.
III. Display the athlete name along with their corresponding sports

[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 NameBook Read
Karan12
Lina9
Raj5
Simran3

Help Ankita to complete the code.

Q-33 CBSE Class 12 Informatics Practices 2024-25 Sample Paper
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()

[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

BCODETITLEAUTHORPRICE
B001MIDNIGHT’S CHILDRENSALAMAN RUSHDIE500
B002THE GOD OF SMALL THINGSARUNDHATI ROY450
B003A SUITABLE BOYVIKRAM SETH600
B004THE WHITE TIGERARAVIND ADIGA399
B005TRAIN TO PAKISTANKHUSHWANT SINGH350

I. Write SQL query to display book titles in lowercase.
II. Write SQL query to display the highest price among the books.
III. rite SQL query to display the number of characters in each book title.
IV. Write SQL query to display the Book Code and Price sorted by Price in descending order.

OR

[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

MIDMED_NAMESUPP_CITYSTOCKDEL_DATE
M01PARACETAMOLMUMBAI2002023-06-15
M02AMOXICILLINKOLAKATA502023-03-21
M03COUGH SYRUPBENGALURU1202023-02-10
M04INSULINCHENNAI1352023-01-05
M05IBUPROFENAHMEDABAD302023-04-05

Write the output of the following SQL Queries.
I. Select LENGTH(MED_NAME) from MEDICINE where STOCK > 100;
II. Select MED_NAME from MEDICINE where month(DEL_DATE) = 4;
III. Select MED_NAME from MEDICINE where STOCK between 120 and 200;
IV. Select max(DEL_DATE) from MEDICINE;

SECTION E – CBSE Class 12 Informatics Practices 2024-25 Sample Paper

[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.

Q-35 CBSE Class 12 Informatics Practices 2024-25 Sample Paper

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

HR TO FINANCE65 M
HR TO TECHNICAL80 M
HR TO SUPPORT70 M
FINANCE TO TECHNICAL60 M
FINANCE TO SUPPORT75 M
TECHNICAL TO SUPPORT50 M
BENGALURU OFFICE LUCKNOW1900 KM

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

HR175
FINANCE35
TECHNICAL50
SUPPORT15
LUCKNOW OFFICE40

I. The server should be installed in the HR department as it has the most number of computers.
II. Star topology

ANSWER OF Q35(III) - CBSE Class 12 Informatics Practices 2024-25 Sample Paper

III. Switch/Hub
IV. WAN (Wide Area Network) will be created as the offices are located in different cities.
V. A dynamic website is recommended as it can display the dynamic performance data (which differs from employee to employee) of each employee.
(1 mark for each correct answer)

[36] Consider the DataFrame df shown below.

MovieIDTitleYearRating
01LAGAAN20018.4
12TAARE ZAMIN PAR20078.5
233 IDIOTS20098.4
34DANGAL20168.4
45ANDHADHUN20188.3

Write Python statements for the DataFrame df to:

I. Print the first two rows of the DataFrame df.
II. Display titles of all the movies.
III. Remove the column rating.
IV. Display the data of the ‘Title’ column from indexes 2 to 4 (both included)
V. Rename the column name ‘Title’ to ‘Name’.

[37] (A) Write suitable SQL query for the following:

I. To display the average score from the test_results column (attribute) in the Exams table
II. 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)
III. To display the data from the column (attribute) username in the Users table, after eliminating any leading and trailing spaces.
IV. To display the maximum value in the salary column (attribute) of the Employees table.
V. To determine the count of rows in the Suppliers table.

OR

Write suitable SQL query for the following:
I. Round the value of pi (3.14159) to two decimal places.

II. Calculate the remainder when 125 is divided by 8.
III. Display the number of characters in the word ‘NewDelhi’.
IV. Display the first 5 characters from the word ‘Informatics Practices’.
V. Display details from ’email’ column (attribute), in the ‘Students’ table, after removing any leading and trailing spaces.

Download CBSE Class 12 Informatics Practices 2024-25 Sample Paper from CBSE website:

Download Sample Paper PDFDownload Marking Scheme PDF

If you need more information or specific sections, feel free to ask!

How to Use the Sample Paper for Effective Preparation

  1. Analyze the Exam Pattern: Familiarize yourself with the structure of the paper. Understand the type of questions asked and how they are distributed across different sections.
  2. Practice Coding Questions: Given the focus on Python programming, practice coding daily. Use integrated development environments (IDEs) like Jupyter or Google Colab to get comfortable with writing and executing Python code.
  3. Strengthen SQL Skills: Database management is an important topic, so focus on writing SQL queries, particularly for complex operations like joins and group-by functions. Practice querying different datasets to gain confidence.
  4. Data Visualization: Ensure you are comfortable with data visualization libraries like Matplotlib and Pandas. Practice plotting different types of graphs (line, bar, scatter) and interpreting them correctly.
  5. Revise Key Concepts: Topics like networking and ethical issues in technology may seem straightforward, but they require revision. Make sure you understand technical terms and their applications in the real world.
  6. Mock Tests and Time Management: Time management is crucial during the exam. Practice solving the sample paper within the given time frame to simulate exam conditions. This will help you build speed and accuracy, ensuring that you can complete the paper on time.

Common Mistakes to Avoid

  • Ignoring Theory: While coding and problem-solving are important, don’t overlook theoretical topics like networking and the societal impacts of technology. These areas are often underestimated but carry significant marks.
  • Lack of Practice in SQL: Many students struggle with writing SQL queries during the exam. Regular practice with databases is essential to avoid confusion during the exam.
  • Not Reviewing Mistakes: After solving the sample paper, review your mistakes and understand where you went wrong. This will help you avoid repeating those errors in the final exam.

Conclusion

The CBSE Class 12 Informatics Practices 2024-25 sample paper is an excellent resource to guide your preparation strategy. By understanding the exam pattern, practicing regularly, and focusing on both theoretical and practical aspects, you can approach the board exam with confidence. Use the sample paper as a roadmap to fine-tune your preparation and work on areas that need improvement.

Good luck with your exam preparation! With consistent effort and smart strategies, you’ll be able to ace the CBSE Informatics Practices exam and achieve the results you desire.

Leave a Reply