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

Preparing for board exams becomes much easier when students practice with CBSE Class 12 IP 065 SQP 2022-23 with Solution. These sample papers are designed according to the latest CBSE exam pattern, helping students understand the structure, marking scheme, and types of questions asked in the actual examination. By solving these papers, students can identify important topics, improve their problem-solving speed, and gain confidence before appearing in the board exams. Regular practice also helps in reducing exam stress and enhances accuracy.

CBSE-Class-12-IP-065-Sample-Question-Paper-2022-23-with-Solution

In addition, referring to a variety of CBSE Class 12 IP Sample Papers and Class 12 IP Board Sample Papers allows students to thoroughly revise the syllabus and strengthen their conceptual understanding. Sample papers act as a self-assessment tool, enabling students to analyze their strengths and weaknesses. Practicing them under timed conditions improves time management skills and boosts performance in the final exam. Overall, consistent revision using these papers plays a crucial role in achieving higher marks in CBSE Class 12 Informatics Practices (065) board examinations.

CBSE Class 12 IP 065 Sample QP 2022-23 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 (2022-23)

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

Max. Time: 3 Hours
Max. Marks: 70

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 01 mark each.
  4. Section B has 07 Very Short Answer type questions carrying 02 marks each.
  5. Section C has 05 Short Answer type questions carrying 03 marks each.
  6. Section D has 03 Long Answer type questions carrying 05 marks each.
  7. Section E has 02 questions carrying 04 marks each. One internal choice is given in Q35 against part c only.
  8. All programming questions are to be answered using Python Language only.
SECTION A

1. Television cable network is an example of:
a) LAN
b) WAN
c) MAN
d) Internet

2. Which of the following is not a type of cyber crime?
a) Data theft
b) Installing antivirus for protection
c) Forgery
d) Cyber bullying

3. What is an example of e-waste?
a) A ripened mango
b) Unused old shoes
c) Unused old computers
d) Empty cola cans

4. Which type of values will not be considered by SQL while executing the following statement?
SELECT COUNT(column name) FROM inventory;
a) Numeric value
b) text value
c) Null value
d) Date value

5. If column “Fees” contains the data set (5000,8000,7500,5000,8000), what will be the output after the execution of the given query?
SELECT SUM (DISTINCT Fees) FROM student;
a) 20500
b) 10000
c) 20000
d) 33500

6. ‘O’ in FOSS stands for:
a) Outsource
b) Open
c) Original
d) Outstanding

7. Which SQL statement do we use to find out the total number of records present in the table ORDERS?
a) SELECT * FROM ORDERS;
b) SELECT COUNT (*) FROM ORDERS;
c) SELECT FIND (*) FROM ORDERS;
d) SELECT SUM () FROM ORDERS;

8. Which one of the following is not an aggregate function?
a) ROUND()
b) SUM()
c) COUNT()
d) AVG()

9. Which one of the following functions is used to find the largest value from the given data in MySQL?
a) MAX( )
b) MAXIMUM( )
c) BIG( )
d) LARGE( )

10. To display last five rows of a series object ‘S’, you may write:
a) S.Head()
b) S.Tail(5)
c) S.Head(5)
d) S.tail()

11. Which of the following statement will import pandas library?
a) Import pandas as pd
b) import Pandas as py
c) import pandas as pd
d) import panda as pd

12. Which of the following can be used to specify the data while creating a DataFrame?
a) Series
b) List of Dictionaries
c) Structured ndarray
d) All of these

13. Which amongst the following is not an example of a browser?
a) Chrome
b) Firefox
c) Avast
d) Edge

14. In SQL, which function is used to display current date and time?
a) Date ()
b) Time ()
c) Current ()
d) Now ()

15. Legal term to describe the rights of a creator of original creative or artistic work is:
a) Copyright
b) Copyleft
c) GPL
d) FOSS

16. _________ is the trail of data we leave behind when we visit any website (or use any online application or portal) to fill-in data or perform any transaction.
a) Offline phishing
b) Offline footprint
c) Digital footprint
d) Digital phishing

Q17 and 18 are ASSERTION AND REASONING based questions.

17. Assertion (A): Internet cookies are text files that contain small pieces of data, like a username, password and user’s preferences while surfing the internet.
Reasoning (R): To make browsing the Internet faster & easier, its required to store certain information on the server’s computer.
a) Both A and R are true and R is the correct explanation for A
b) Both A and R are true and R is not the correct explanation for A
c) A is True but R is False
d) A is false but R is True

18. Assertion (A): DataFrame has both a row and column index.
Reasoning (R): A DataFrame is a two-dimensional labelled data structure like a table of MySQL.
a) Both A and R are true and R is the correct explanation for A
b) Both A and R are true and R is not the correct explanation for A
c) A is True but R is False
d) A is false but R is True

SECTION B

19. Explain the terms Web page and Home Page.
Ans: Web Page: A Web Page is a part of a website and is commonly written in HTML. It can be accessed through a web browser.
Home Page: It is the first web page you see when you visit a website.
OR
Mention any four networking goals.
Ans: (i) Resource sharing
(ii) Reliability
(iii) Cost effective
(iv) Fast data sharing

20. Rashmi, a database administrator needs to display house wise total number of records of ‘Red’ and ‘Yellow’ house. She is encountering an error while executing the following query:
SELECT HOUSE, COUNT (*) FROM STUDENT GROUP BY HOUSE WHERE HOUSE=’RED’ OR HOUSE= ‘YELLOW’;
Help her in identifying the reason of the error and write the correct query by suggesting the possible correction (s).
Ans: The problem with the given SQL query is that WHERE clause should not be used with Group By clause.
To correct the error, HAVING clause should be used instead of WHERE.
Corrected Query:
SELECT HOUSE, COUNT(*) FROM STUDENT GROUP BY HOUSE HAVING HOUSE= ‘RED’ OR HOUSE=’YELLOW’;

21. What is the purpose of Order By clause in SQL? Explain with the help of suitable example.
Ans: Order By clause:
The ORDER BY command is used to sort the result set in ascending or descending order.
The following SQL statement displays all the customer’s names in alphabetical order:
SELECT Cname FROM Customers ORDER BY Cname;

22. Write a program to create a series object using a dictionary that stores the number of students in each house of class 12D of your school.
Note: Assume four house names are Beas, Chenab, Ravi and Satluj having 18, 2, 20, 18 students respectively and pandas library has been imported as pd.
Ans: St={‘Beas’ :18, ‘Chenab’ :20 , ‘ Ravi’ :20, ‘ Satluj’ :18}
S1=pd.Series(St)

23. List any four benefits of e-waste management.
Ans: (i) Saves the environment and natural resources
(ii) Allows for recovery of precious metals
(iii) Protects public health and water quality
(iv) Saves landfill space
OR
Mention any four net etiquettes.
Ans: (i) No copyright violation
(ii) Share the expertise with others on the internet
(iii) Avoid cyber bullying
(iv) Respect other’s privacy and diversity

24. What will be the output of the following code:
import pandas as pd
A=pd.Series(data=[35,45,55,40])
print(A>45)
Ans:
0 False
1 False
2 True
3 False

25. Carefully observe the following code:
import pandas as pd
Year1={'Q1':5000,'Q2':8000,'Q3':12000,'Q4': 18000}
Year2={'A' :13000,'B':14000,'C':12000}
totSales={1:Year1,2:Year2}
df=pd.DataFrame(totSales)
print(df)
Answer the following:
i. List the index of the DataFrame df
Ans: The index labels of df will include Q1,Q2,Q3,Q4,A,B,C
ii. List the column names of DataFrame df.
Ans: The column names of df will be: 1,2

SECTION C

26. Write outputs for SQL queries (i) to (iii) which are based on the given table PURCHASE:
TABLE: PURCHASE
CNO CNAME CITY QUANTITY DOP
C01 GURPREET NEW DELHI 150 2022-06-11
C02 MALIKA HYDERABAD 10 2022-02-19
C03 NADAR DALHOUSIE 100 2021-12-04
C04 SAHIB CHANDIGARH 50 2021-10-10
C05 MEHAK CHANDIGARH 15 2021-10-20
i. SELECT LENGTH(CNAME) FROM PURCHASE WHERE QUANTITY>100;
Ans:
ii. SELECT CNAME FROM PURCHASE WHERE MONTH(DOP)=3;
Ans:
iii. SELECT MOD (QUANTITY, DAY(DOP)) FROM PURCHASE WHERE CITY= ‘CHANDIGARH’;
Ans:

27. Write a Python code to create a DataFrame with appropriate column headings from the list given below:
[[101,'Gurman',98],[102,'Rajveer',95],[103,'Samar' ,96],[104,'Yuvraj',88]]
Ans:

28. Consider the given DataFrame ‘Stock’:
Index Name Price
0 Nancy Drew 150
1 Hardy boys 180
2 Diary of a wimpy kid 225
3 Harry Potter 500
Write suitable Python statements for the following:
i. Add a column called Special_Price with the following data: [135,150,200,440].
Ans:
ii. Add a new book named ‘The Secret' having price 800.
Ans:
iii. Remove the column Special_Price.
Ans:

29. Nadar has recently shifted to a new city and school. She does not know many people in her new city and school. But all of a sudden, someone is posting negative, demeaning comments on her social networking profile etc.
She is also getting repeated mails from unknown people. Every time she goes online, she finds someone chasing her online.
i. What is this happening to Nadar?
Ans:
ii. What immediate action should she take to handle it?
Ans:
iii. Is there any law in India to handle such issues? Discuss briefly.
Ans:
OR
What do you understand by plagiarism? Why is it a punishable offence? Mention any two ways to avoid plagiarism.
Ans:

30. Based on table STUDENT given here, write suitable SQL queries for the following:
Roll No Name Class Gender City Marks
1 Abhishek XI M Agra 430
2 Prateek XII M Mumbai 440
3 Sneha XI F Agra 470
4 Nancy XII F Mumbai 492
5 Himnashu XII M Delhi 360
6 Anchal XI F Dubai 256
7 Mehar X F Moscow 324
8 Nishant X M Moscow 429
i. Display gender wise highest marks.
Ans:
ii. Display city wise lowest marks.
Ans:
iii. Display total number of male and female students.
Ans:
OR
Discuss the significance of Group by clause in detail with the help of suitable example.
Ans:

SECTION D

31. Write suitable SQL query for the following:
i. Display 7 characters extracted from 7th left character onwards from the string ‘INDIA SHINING’.
Ans:
ii. Display the position of occurrence of string ‘COME’ in the string ‘WELCOME WORLD’.
Ans:
iii. Round off the value 23.78 to one decimal place.
Ans:
iv. Display the remainder of 100 divided by 9.
Ans:
v. Remove all the expected leading and trailing spaces from a column userid of the table ‘USERS’.
Ans:
OR
Explain the following SQL functions using suitable examples.
i. UCASE()
ii. TRIM()
iii. MID()
iv. DAYNAME()
v. POWER()

32. Prime Computer services Ltd. is an international educational organization. It is planning to set up its India campus at Mumbai with its head office in Delhi. The Mumbai office campus has four main buildings-ADMIN, ACCOUNTS, EXAMINATION and RESULT.
You as a network expert have to suggest the best network related solutions for their problems raised in (i) to (v), keeping in mind the distances between the buildings and other given parameters.
CBSE-Class-12-IP-065-Sample-Question-Paper-2022-23-with-Solution-Q32
Shortest distances between various buildings:
ADMIN TO ACCOUNTS - 55 m
ADMIN TO EXAMINATION - 90 m
ADMIN TO RESULT - 50 m
ACCOUNTS TO EXAMINATION - 55 m
ACCOUNTS TO RESULT - 50 m
EXAMINATION TO RESULT - 45 m
DELHI Head Office to MUMBAI campus - 2150 m
Number of computers installed at various buildings are as follows:
ADMIN - 110
ACCOUNTS - 75
EXAMINATION - 40
RESULT - 12
DELHI HEAD OFFICE - 20
(i) Suggest the most appropriate location of the server inside the MUMBAI campus (out of the four buildings) to get the best connectivity for maximum number of computers. Justify your answer.
Ans:
(ii) Suggest and draw cable layout to efficiently connect various buildings within the MUMBAI campus for a wired connectivity.
Ans:
(iii) Which networking device will you suggest to be procured by the company to interconnect all the computers of various buildings of MUMBAI campus?
Ans:
(iv) Company is planning to get its website designed which will allow students to see their results after registering themselves on its server. Out of the static or dynamic, which type of website will you suggest?
Ans:
(v) Which of the following will you suggest to establish the online face to face communication between the people in the ADMIN office of Mumbai campus and Delhi head office?
a) Cable TV
b) Email
c) Video conferencing
d) Text chat

33. Write Python code to plot a bar chart for India’s medal tally as shown below:

CBSE-Class-12-IP-065-Sample-Question-Paper-2022-23-with-Solution-Q33

Also give suitable python statement to save this chart.
Ans:
OR
Write a python program to plot a line chart based on the given data to depict the changing weekly average temperature in Delhi for four weeks.
Week=[1,2,3,4]
Avg_week_temp=[40,42,38,44]
Ans:

SECTION E

34. Shreya, a database administrator has designed a database for a clothing shop. Help her by writing answers of the following questions based on the given table:
TABLE: CLOTH
CCODE CNAME SIZE COLOR PRICE DOP
C001 JEANS XL BLUE 990 2022-01-21
C002 T SHIRT M RED 599 2021-12-12
C003 TROUSER M GREY 399 2021-11-10
C004 SAREE FREE GREEN 1299 2019-11-12
C005 KURTI L WHITE 399 2021-12-07
i. Write a query to display cloth names in lower case.
Ans:
ii. Write a query to display the lowest price of the cloths.
Ans:
iii. Write a query to count total number of cloths purchased of medium size.
Ans:
OR (Option for part iii only)
Write a query to count year wise total number of cloths purchased.
Ans:

35. Mr. Som, a data analyst has designed the DataFrame df that contains data about Computer Olympiad with ‘CO1’, ‘CO2’, ‘CO3’, ‘CO4’, ‘CO5’ as indexes shown below. Answer the following questions:
School Tot_students Topper First_Runnerup
C01 PPS 40 32 8
C02 JPS 30 18 12
C03 GPS 20 18 2
C04 MPS 18 10 8
C05 BPS 28 20 8
A. Predict the output of the following python statement:
i. df.shape
Ans:
ii. df[2:4]
Ans:
B. Write Python statement to display the data of Topper column of indexes CO2 to CO4.
Ans:
OR (Option for part iii only)
Write Python statement to compute and display the difference of data of Tot_students column and First_Runnerup column of the above given DataFrame.
Ans:

Download Now - Class 12 IP 065 Sample Question Paper 2022-23 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