CBSE Class 12 IP 065 Sample QP 2024-25 with Solution

CBSE Class 12 Informatics Practices (065) Sample Question Paper 2024-25 with Solution is an essential resource for students preparing for their board exams. Practicing with the latest CBSE Class 12 IP sample paper 2024-25 with solutions helps students understand the updated exam pattern, marking scheme, and important question types. By solving Class 12 IP Sample papers regularly, students can improve their time management skills, identify weak areas, and gain clarity on concepts. It also provides a real exam-like experience, making students more confident and exam-ready.

CBSE-Class-12-IP-065-Sample-Question-Paper-2024-25-with-Solution

Using the CBSE Class 12 IP 065 solved sample question paper 2024-25 PDF during revision helps reduce exam stress and anxiety, as students become familiar with the structure and difficulty level of questions. It acts as a powerful practice tool before and during exams, enabling students to track their performance and focus on improvement. Consistent practice with these sample papers not only boosts confidence but also increases the chances of scoring high marks and achieving desired academic goals in the CBSE board examination.

CBSE Class 12 IP 065 Sample QP 2024-25 with Solution

You can download the free PDF of this sample pre-board question paper from our website and start practicing today. Download Link available in last.

The Year-Wise CBSE Class 12 Informatics Practices (065) Pre-Board and Sample Question Papers with Solutions are provided at the bottom of this post.

CBSE Class 12 IP 065 Sample Question Paper Session (2024-25)

CBSE | DEPARTMENT OF SKILL EDUCATION
INFORMATICS PRACTICES (SUBJECT CODE - 065)
Sample Question Paper (SQP) Solution for Class XII (Session 2024-2025)

Max. Time: 3 Hours
Max. Marks: 70

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

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 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:
-----table
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.

20. Assertion (A): We can add a new column in an existing DataFrame.
Reason (R): DataFrames are size mutable.
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

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

SECTION B (7x2=14 Marks)

22. What is a Series in Python Pandas? Also, give a suitable example to support your answer.
OR
What does the term 'library' signify in Python? Mention one use for each of the following libraries:
(i) Pandas (ii) Matplotlib

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:
(i) To extract and display "Manage" from the string.
(ii) Display the position of the first occurrence of "base" in the given string.

25. What is Internet and how does it differ from World Wide Web (WWW)?
OR
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.

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

28. 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)
OR
Complete the given Python code to get the required output (ignore the dtype attribute) as
Output:
-----table
Code:
import _______ as pd
data = ['Chennai','_______','Imphal']
indx = ['Tamil Nadu','Uttar Pradesh','Manipur']
s = pd.Series(_______, indx)
print(_______)

SECTION C (4x3=12 Marks)

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. Write a Python program to create the following DataFrame using a list of dictionaries.
-----table
OR
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.
-----table

31. (i) Write an SQL statement to create a table named STUDENTS, with the following specifications:
-----table
(ii) Write SQL Query to insert the following data in the Students Table:
1, Supriya, Singh, 2010-08-18, 75.5

32. 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
-----table
Table: PAYROLL
-----table
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
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
-----table
Table: MEDALS
-----table
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

SECTION D (2x4=8 Marks)

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.
-----table
Help Ankita to complete the code.
-----graph
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()
(i) Write the suitable code for the import statement in the blank space in the line marked as Statement 1.
(ii) Refer to the graph shown above and fill in the blank in Statement 2 with suitable Python code.
(iii) Fill in the blank in Statement 3 with the name of the function to set the label on the y-axis.
(iv) Refer the graph shown above and fill the blank in Statement 4 with suitable Chart Title.

34. 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
------table
(i) Write SQL query to display book titles in lowercase.
(ii) Write SQL query to display the highest price among the books.
(iii) Write 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
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
-----table
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 (3x5=15 Marks)

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.
-----image
The shortest distances between the departments/offices are as follows:
-----table
The number of computers in each department/office is as follows:
-----table
(i) Suggest the most suitable department in the Bengaluru Office Setup, to install the server. Also, give a reason to justify your suggested location.
(ii) Draw a suitable cable layout of wired network connectivity between the departments in the Bengaluru Office.
(iii) Which networking device would you suggest the company to purchase to interconnect all the computers within a department in Bengaluru Office?
(iv) 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.
(v) 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?

36. Consider the DataFrame df shown below.
-----table
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. 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 Now - Class 12 IP 065 Sample Question Paper 2024-25 with Solution

CBSE-Class-12-Informatics-Practices-Code-065-Sample-Question-Paper-with-Solution

Year wise Pre-Board and CBSE Sample Question Papers with Solution – Class 12 Informatics Practices (Code 065)

CBSE Class 12 IP 065 Sample QP 2026-27 with Solution

CBSE Class 12 IP 065 Pre Board Practice Sample QP 2025-26 with Solution

CBSE Class 12 IP 065 Sample QP 2025-26 with Solution

CBSE Class 12 IP 065 Sample QP 2024-25 with Solution

CBSE Class 12 IP 065 Additional Sample QP 2023-24 with Solution

CBSE Class 12 IP 065 Sample QP 2023-24 with Solution

CBSE Class 12 IP 065 Sample QP 2022-23 with Solution

CBSE Class 12 IP 065 Sample QP 2021-22 Term 2 with Solution

CBSE Class 12 IP 065 Sample QP 2021-22 Term 1 with Solution

CBSE Class 12 IP 065 Sample QP 2020-21 with Solution

Post a Comment

Previous Post Next Post