Skip to content
CBSE Guides
  • Class 9thExpand
    • Ncert Solutions For Class 9 English
  • Class 10th
  • Class 11thExpand
    • NCERT Solutions For Class 11 English
  • Class 12th
CBSE Guides
Home / Class 12th / CBSE Class 12 Informatics Practices Sample Paper 2023

CBSE Class 12 Informatics Practices Sample Paper 2023

We have provided you with CBSE Class 12 Informatics Practices Sample Paper 2023 to help you all with the class 12th sample paper so that you can be well aware of the weightage, design, and type of questions asked in the board examinations.

We have also shared CBSE Class 12 Informatics Practices Sample Paper 2023 pdf along with CBSE Class 12 Informatics Practices Sample Paper 2023 Marking Scheme to help you out with the paper and boost your learning.


Contents

  • Informatics Practices Class 12 Sample Paper 2022-23- Questions with Answers
  • Informatics Practices Class 12 Sample Paper 2023 PART A
  • Informatics Practices Class 12 Sample Paper 2023 PART B
  • Informatics Practices Class 12 Sample Paper 2023 PART C
  • Informatics Practices Class 12 Sample Paper 2023 PART D
  • CBSE Class 12 Informatics Practices Sample Paper 2023 PDF
  • CBSE Class 12 Informatics Practices Sample Paper 2023 Marking Scheme
  • Conclusion

Informatics Practices Class 12 Sample Paper 2022-23- Questions with Answers

SAMPLE QUESTION PAPER

CLASS XII
INFORMATICS PRACTICES (065)
TIME: 3 HOURS                                                                                                                                                                                                                                    M.M.70

Informatics Practices Class 12 Sample Paper 2023 PART A

1. Television cable network is an example of:
i. LAN
ii. WAN
iii. MAN
iv. Internet

2. Which of the following is not a type of cybercrime?
i. Data theft
ii. Installing antivirus for protection
iii. Forgery
iv. Cyberbullying

3. What is an example of e-waste?
i. A ripened mango
ii. Unused old shoes
iii. Unused old computers
iv. 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;

i. Numeric value
ii. text value
iii. Null value
iv. 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;
i. 20500
ii. 10000
iii. 20000
iv. 33500

6. ‘O’ in FOSS stands for:
i. Outsource
ii. Open
iii. Original
iv. Outstanding

7. Which SQL statement do we use to find out the total number of records present in the table ORDERS?

i. SELECT * FROM ORDERS;
ii. SELECT COUNT (*) FROM ORDERS;
iii. SELECT FIND (*) FROM ORDERS;
iv. SELECT SUM () FROM ORDERS;

8. Which one of the following is not an aggregate function?
i. ROUND()
ii. SUM()
iii. COUNT()
iv. AVG()

9. Which one of the following functions is used to find the largest value from the given data in MySQL?
i. MAX( )
ii. MAXIMUM( )
iii. BIG( )
iv. LARGE( )

10. To display the last five rows of a series object ‘S’, you may write:
i. S.Head()
ii. S.Tail(5)
iii. S.Head(5)
iv. S.tail()

11. Which of the following statement will import the panda’s library?
i. Import pandas as pd
ii. import Pandas as py
iii. import pandas as pd
iv. import panda as pd

12. Which of the following can be used to specify the data while creating a DataFrame?
i. Series
ii. List of Dictionaries
iii. Structured ndarray
iv. All of these

13. Which of the following is not an example of a browser?
i. Chrome
ii. firefox
iii. Avastin. Edge

14. In SQL, which function is used to display the current date and time?
i. Date ()
ii. Time ()
iii. Current ()
iv. Now ()

15. Legal term to describe the rights of a creator of original creative or artistic work is:
i. Copyright
ii. Copyleft
iii. GPL. 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.
i. Offline phishing
ii. Offline footprint
iii. Digital footprint
iv. Digital phishing

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.

18. Assertion (A):- DataFrame has both a row and column index.

Reasoning (R): – A DataFrame is a two-dimensional labeled data structure like a table of MySQL.


Informatics Practices Class 12 Sample Paper 2023 PART B

19. Explain the terms Web page and Home Page.

OR
Mention any four networking goals.

20. Rashmi, a database administrator needs to display house wise total number of records of the ‘Red’ and ‘Yellow’ houses. 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).

21. What is the purpose of the Order By clause in SQL? Explain with the help of a suitable example.

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, and 18 students respectively and pandas library has been imported as PD.

23. List any four benefits of e-waste management.
OR
Mention any four net etiquettes.

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)

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
ii. List the column names of DataFrame df.


Informatics Practices Class 12 Sample Paper 2023 PART C

26. Write outputs for SQL queries (i) to (iii) which are based on the given table PURCHASE:

i. SELECT LENGTH(CNAME) FROM PURCHASE WHERE QUANTITY>100;
ii. SELECT CNAME FROM PURCHASE WHERE MONTH(DOP)=3;
iii. SELECT MOD (QUANTITY, DAY(DOP)) FROM PURCHASE WHERE CITY= ‘CHANDIGARH’;
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]]

28. Consider the given DataFrame ‘Stock’:

Name Price

            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].
ii. Add a new book named ‘The Secret’ at a price of 800.
iii. Remove the column Special_Price.
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 emails from unknown people. Every time she goes online, she finds someone chasing her online.

i. What is this happening to Nadar?
ii. What immediate action should she take to handle it?
iii. Is there any law in India to handle such issues? Discuss briefly.

OR
What do you understand by plagiarism? Why is it a punishable offense? Mention any two ways to avoid plagiarism.

30. Based on the table STUDENT given here, write suitable SQL queries for the following:

i. Display gender wise highest marks.
ii. Display city wise lowest marks.
iii. Display total number of male and female students.
OR
Discuss the significance of Group by clause in detail with the help of suitable example.


Informatics Practices Class 12 Sample Paper 2023 PART D

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

32. Prime Computer Services Ltd. is an international educational organization. It is planning to set up its India campus in 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 the problems raised in (i) to (v), keeping in mind the distances between the buildings and other given parameters.

(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.
(ii) Suggest and draw cable layout to efficiently connect various buildings within the MUMBAI campus for a wired connectivity.
(iii) Which networking device will you suggest to be procured by the company to interconnect all the computers of various buildings of MUMBAI campus?
(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?
(v) Which of the following will you suggest to establish online face-to-face communication between the people in the ADMIN office of the Mumbai campus and the 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:

Also give suitable python statement to save this chart.
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]

34. Shreya, a database administrator has designed a database for a clothing shop.
Help her by writing answers to the following questions based on the given
table: TABLE: CLOTH

i. Write a query to display cloth names in lower case.
ii. Write a query to display the lowest price of the cloths.
iii. Write a query to count total number of cloths purchased of medium
size.

OR (Option for part iii only)

Write a query to count the year-wise total number of clothes

purchased.
35. Mr. Som, a data analyst has designed the DataFrame df that contains data about Computer Olympiad with ‘CO1’, ‘CO2’, ‘CO3’, ‘CO4’, and ‘CO5’ as indexes shown below. Answer the following questions:

A. Predict the output of the following python statement:
i. df. shape
ii. df[2:4] B. Write a Python statement to display the data of the Topper column of indexes CO2 to CO4.
OR (Option for part iii only)
Write a Python statement to compute and display the difference of data of the Tot_students column and First_Runnerup column of the above given DataFrame.


CBSE Class 12 Informatics Practices Sample Paper 2023 PDF

We have shared CBSE Class 12 Informatics Practices Sample Paper 2023 PDF and students can download it for a better understanding and practice from the link given below-

https://drive.google.com/file/d/1R8ua3vTu_YwdX_4Nnv5XqWHjaJF3Tik7/view?usp=sharing


CBSE Class 12 Informatics Practices Sample Paper 2023 Marking Scheme

We have also provided the link CBSE Class 12 Informatics Practices Sample Paper 2023 Marking Scheme to help you with the solutions of the above sample paper. Students after doing the sample paper can recheck for a better understanding of the sample paper.

https://drive.google.com/file/d/1R9QM44AfxaFUCBF-0OfUho6VjcEeGhBy/view?usp=sharing


Conclusion

We have provided you with CBSE Class 12 Informatics Practices Sample Paper 2023 to help you all with the class 12th sample paper so that you can be well aware of the weightage, design, and type of questions asked in the board examinations.

By Solving CBSE Sample Papers, Students get to know the exam pattern, weightage of questions, and difficulty level of the paper. Solving these CBSE papers will also increase the confidence level of the students.

Related Articles

  • CBSE Class 10 Mathematics Sample Paper 2023
  • CBSE Class 12 History Sample Question Paper 2023
  • CBSE Class 12 Economics Sample Paper 2023
  • CBSE Class 12 Biology Sample Paper 2023
  • CBSE Class 10 Computer Applications Sample Paper 2023
  • English Sample Question Paper Class 10th CBSE
Kavisha Bagga

Hi, I am Kavisha Bagga, a teacher by profession and a part-time blogger. I love sharing knowledge, which is why I have started this blog.

Recent Posts

  • The Interview Class 12th NCERT English
  • The Last Bargain Class 8th NCERT Honeydew
  • The Great Stone Face 2 8th NCERT
  • The Great Stone Face I Class 8th NCERT
  • A Visit To Cambridge Class 8th NCERT

CBSE Guides © 2023 

  • Home
  • Disclaimer
  • Contact Us
  • Privacy Policy
Scroll to top
  • Class 9th
    • Ncert Solutions For Class 9 English
  • Class 10th
  • Class 11th
    • NCERT Solutions For Class 11 English
  • Class 12th
Search