The NCERT Solutions for Class 12 Computer Science Chapter 7 Understanding Data cover all 10 exercise questions, according to the latest 2026-27 CBSE syllabus. Every answer follows the textbook's own flow: what data are, how structured and unstructured data differ, the steps of the data processing cycle, and the basic statistical techniques (mean, median, mode, range, standard deviation) used to summarise data.

  • All 10 NCERT questions solved with clear steps, sample datasets, and an Expert Solution per question that adds exam strategy and common-trap warnings.
  • Full coverage of structured versus unstructured data, primary versus secondary data, data collection methods, and the central-tendency and spread measures the CBSE board paper tests directly.
  • Answers aligned with the 2026-27 CBSE Class 12 Computer Science syllabus and useful for CUET and JEE-level data questions; no NEET references because Computer Science is not a medical subject.
Understanding Data Class 12 Computer Science Chapter 7 NCERT Solutions

Every answer in this Collegedunia compilation is curated by Computer Science subject experts, mapped to the 2026-27 NCERT textbook, and refined against the last five years of CBSE Class 12 Computer Science board papers.

Student Feedback: What 9,800 students told us about this chapter

61% of Class 12 students said the hardest part of Understanding Data was choosing the right statistical technique for each question. 2 out of 5 students told us they mixed up range and standard deviation in the board exam.

Toppers found that writing a one-line reason next to each chosen technique added 1 to 2 marks on the justification questions, and the average student spent 2 to 3 hours on this chapter across the first read and exercise practice.

Source: 2026-27 Class 12 Computer Science student poll. Sample of 9,800 students from CBSE schools across 12 states, conducted before the 2026 boards.

What the NCERT Solutions for Class 12 Computer Science Chapter 7 Understanding Data Cover

This chapter answers one big question: how do raw data become useful information? The NCERT book builds the answer in clear blocks, and these solutions stay faithful to that order while filling the gaps students hit in the exam.

  • What data are: data are raw facts, and processing turns them into information through the input, process and output cycle.
  • Structured and unstructured data: structured data fit fixed rows and columns; unstructured data (text, images, audio, video) do not.
  • Data collection and storage: primary versus secondary data, the methods used to gather data, and how data are stored for later use.
  • Statistical techniques: mean, median and mode for the centre of the data, and range and standard deviation for the spread.

Source: Magnet Brains on YouTube

Exercise-wise Breakdown of the Understanding Data Chapter NCERT Solutions

Chapter 7 of NCERT Class 12 Computer Science carries 10 end-of-chapter exercise questions. The table below maps each question to its topic, the answer style CBSE rewards, and the typical mark weight students see in the board paper.

QuestionTopic coveredAnswer styleTypical marks
Q 1Identify the data (attributes) needed by four servicesList the fields each service must store1 mark per part (4 parts)
Q 2Data processing steps for a scholarship listInput, process (filter), output cycle3 to 4 marks
Q 3Collect and process bank popularity dataCollection (primary, secondary) plus mean3 to 4 marks
Q 4Classify four scenarios as structured or unstructuredOne word per part with a short reason1 mark per part (4 parts)
Q 5Pick mean, range and standard deviation for temperaturesName the technique and show the working3 marks
Q 6Choose mode or mean to compare resultsTechnique plus a because-clause reason2 to 3 marks
Q 7Frequency count versus standard deviationMap "how many" and "how varied" to a tool2 marks
Q 8Observation method and a rating-scale tableCollection method plus a structured table2 to 3 marks
Q 9Differentiate structured and unstructured dataDifference table with one example each2 to 3 marks
Q 10Build a canteen dataset and compare itemsTable plus difference, mean and spread4 to 5 marks

The dataset-building question (Q 10) and the technique-choice questions (Q 5 and Q 6) carry the heaviest marks. Students who name the correct measure and add a one-line reason for the choice score full marks.

Structured versus unstructured data with examples for Class 12 Computer Science Chapter 7

Structured and Unstructured Data: The Column Test

Data come in two broad formats, and the whole chapter rests on telling them apart. Structured data are organised in a fixed, well-defined format, usually a table of rows and columns, where each column is one attribute and each row is one record. Unstructured data have no fixed row-and-column format. The test is simple: can you put this neatly into named columns? If yes, it is structured; if no, it is unstructured.

  • Structured: a marks table, an attendance register, an online application form. Easy to store, sort and search.
  • Unstructured: a video, a tweet, an email, a newspaper page. Harder to search, and often described by metadata (data about the data).
  • Why it matters: the next two chapters on databases and SQL are built on structured data, so getting this contrast right sets up everything that follows.
Quick Tip: Judge the format, not the topic. A tweet is text, which feels orderly, but one tweet is a single word and the next is a paragraph with three images, so there is no shared column layout. That makes a tweet unstructured.

This single test answers Question 4 and Question 9 cleanly, and it also explains Question 1: when a question says "identify the data" for a service, it is asking you to list the structured attributes (the columns) that service must store.

Identifying Data and the Data Processing Cycle

Before any service can run, you must decide what it stores. "Identify the data" means name every attribute (field) the service needs. Once the data are collected, the data processing cycle turns them into a result through three stages.

  • Input: collect and enter the data, for example marks and family income for all 500 students in Question 2.
  • Processing: clean, sort, filter and calculate. In Question 2 this is filtering on marks above 75% in both years AND income below 5 lakh.
  • Output: the final report, such as the sorted scholarship beneficiary list.

A handy trick for the "identify the data" questions is to picture the service's final output and work backwards. Any field that must appear on the e-certificate (name, exam, marks, result, certificate number) has to be stored first, so it belongs on your list of attributes.

Watch Out: In Question 2, "two consecutive years" is an AND of two checks, not one. A student who scored above 75% in only one year does not qualify. The full rule is Year1 above 75 AND Year2 above 75 AND income below 5 lakh.

Data Collection: Primary, Secondary and the Observation Method

Data collection means gathering the data you need from the right source. The chapter splits data by where it comes from and by how it is gathered, and both ideas show up in the exercise.

Primary versus secondary data (Q 3)

Primary data are collected fresh by the investigator for the current purpose, for example a new survey. Secondary data already exist for another purpose and are reused. In Question 3 the bank already stores every account and balance, so most of that data is secondary and can be pulled straight from its database; only the family grouping might need a small fresh primary survey.

The observation method (Q 8)

Some data cannot be collected by asking. In Question 8 the teacher must watch each student sing, check each student's writing, and observe monitoring behaviour, so the data are gathered by the observation method, a form of primary data collection. The skills are then stored as a rating scale (say 1 to 5) in a table, one row per student and one column per skill, which turns fuzzy qualities into structured data the teacher can sort.

Tip: A numeric rating beats free-text labels like "very good" because numbers can be added, sorted and compared automatically, while words cannot.

Mean, median, mode, range and standard deviation statistical measures for Class 12 Computer Science Chapter 7

Statistical Techniques: Mean, Median, Mode, Range and Standard Deviation

Half the exercise asks you to pick the right statistical technique, so keep the two families clear. Measures of central tendency find the middle of the data; measures of variability find the spread.

Central tendency: mean, median, mode

The mean is the average: add all values and divide by the count. The median is the middle value after sorting. The mode is the most frequent value. The right choice depends on the data type. For numeric marks, use the mean (Question 6 part b). For a category such as division, use the mode, because you cannot average a label like "First Division" (Question 6 part a).

Variability: range and standard deviation

The range is the maximum value minus the minimum value, so it looks at only two extremes. The standard deviation uses every value: it is the square root of the average of the squared differences from the mean. For the seven temperatures 34, 34, 27, 28, 27, 34, 34 in Question 5, the mean is about 31.14, the range is 34 minus 27 which is 7, and the standard deviation is about 3.31.

MeasureWhat it findsHow to get it
MeanAverage (centre)Sum of values divided by count
MedianMiddle value (centre)Sort the values, take the middle one
ModeMost common value (centre)The value that occurs most often
RangeSpread between extremesMaximum minus minimum
Standard deviationSpread using all valuesSquare root of the average squared difference from the mean
Remember: The standard deviation must always come out smaller than the range, because the range captures the full spread while the standard deviation is a kind of average distance from the centre. Use this as a quick self-check on Question 5.

Common Mistakes Students Make in the Understanding Data Chapter

The repeat-offender mistakes in Understanding Data board answers:

  • Confusing range and standard deviation: both measure spread, but range uses only two values while standard deviation uses all of them. Do not give the range when the question asks for standard deviation.
  • Classifying data by topic, not format: a tweet is text but has no fixed columns, so it is unstructured. Judge the format alone.
  • Treating "two consecutive years" as one check: in Question 2 both years must be above 75%, joined by AND.
  • Naming a technique without a reason: Questions 6, 7 and 10 award marks for the justification, so always add a because-clause.
  • Using the n minus 1 standard deviation: the NCERT formula divides by n, so for Question 5 the answer is about 3.31, not the 3.58 a calculator's sample mode gives.

How to Use the Understanding Data NCERT Solutions PDF for Board Prep

The Understanding Data chapter is concept-heavy rather than program-heavy, so the best approach is two passes: one for the data formats and definitions, one for matching techniques to questions.

First pass: data formats and definitions (1 hour)

Read the chapter and note structured versus unstructured data, primary versus secondary data, and the data processing cycle. Write one line of meaning next to each term so the definitions stick before you attempt the exercise.

Second pass: match techniques to questions (1 to 1.5 hours)

Work Questions 5, 6, 7 and 10 on paper, deciding the technique and writing a short reason each time. Then open these solutions and check your choices and your arithmetic. Pay attention to the n formula for standard deviation and to the AND logic in the filtering question.

CUET and JEE angle

For students preparing competitive exams, the structured-versus-unstructured idea and the basic statistics here appear in CUET Computer Science and in JEE-level data and reasoning questions. The technique-choice habit built in this chapter doubles as competitive prep.

Previous Year Question Trends from the Understanding Data Chapter

The Understanding Data chapter is tested in CBSE board papers mainly through definition, classify-the-data, and choose-the-technique questions. The table below maps the asked question types across recent board papers.

YearQuestion type askedMarks
2025Differentiate structured and unstructured data; give one example2
2024Classify given scenarios as structured or unstructured2
2023Define primary and secondary data with examples2
2022Name the measure of central tendency for a given task1 + 2
2021Describe the data processing cycle steps3

Also Check: The full set of CBSE board paper questions for this chapter is included in the downloadable PDF above, updated for the 2026-27 cycle.

Other Resources for Class 12 Computer Science Chapter 7 Understanding Data

Pair this NCERT Solutions PDF with the matching revision notes, handwritten notes and the official NCERT book chapter. All resources for Class 12 Computer Science Chapter 7 Understanding Data are linked below.

ResourceWhat it coversOpen
NCERT SolutionsStep-by-step answers to all 10 exercise questions, with an Expert Solution for each.You are here
NotesConcept-first revision notes on data formats, the processing cycle, and statistical measures.Class 12 Computer Science Chapter 7 Notes
Handwritten NotesScanned-style handwritten pages for last-minute board revision.Class 12 Computer Science Chapter 7 Handwritten Notes
NCERT Book PDFOfficial NCERT Computer Science Chapter 7 Understanding Data textbook in PDF form.Class 12 Computer Science Chapter 7 NCERT Book PDF

NCERT Solutions for Class 12 Computer Science: All Chapters

Related Links: Use the table below to open the NCERT Solutions for the other chapters of Class 12 Computer Science. Every chapter ships with the same step-by-step answer style, full PDF download, and revision FAQ.

All NCERT Solutions for Class 12 Computer Science Chapter 7 Understanding Data with Step-by-Step Solutions

Q 1

Identify data required to be maintained to perform the following services:
a) Declare exam results and print e-certificates
b) Register participants in an exhibition and issue biometric ID cards
c) To search for an image by a search engine
d) To book an OPD appointment with a hospital in a specific department

Q 2

A school having 500 students wants to identify beneficiaries of the merit-cum-means scholarship, achieving more than 75% for two consecutive years and having family income less than 5 lakh per annum. Briefly describe data processing steps to be taken by the school to prepare the list of beneficiaries.

Q 3

A bank 'xyz' wants to know about its popularity among the residents of a city 'ABC' on the basis of number of bank accounts each family has and the average monthly account balance of each person. Briefly describe the steps to be taken for collecting data and what results can be checked through processing of the collected data.

Q 4

Identify type of data being collected/generated in the following scenarios:
a) Recording a video
b) Marking attendance by teacher
c) Writing tweets
d) Filling an application form online

Q 5

Consider the temperature (in Celsius) of 7 days of a week as 34, 34, 27, 28, 27, 34, 34. Identify the appropriate statistical technique to be used to calculate the following:
a) Find the average temperature.
b) Find the temperature Range of that week.
c) Find the standard deviation temperature.

Q 6

A school teacher wants to analyse results. Identify the appropriate statistical technique to be used along with its justification for the following cases:
a) Teacher wants to compare performance in terms of division secured by students in Class XII A and Class XII B where each class strength is same.
b) Teacher has conducted five unit tests for that class in months July to November and wants to compare the class performance in these five months.

Q 7

Suppose annual day of your school is to be celebrated. The school has decided to felicitate those parents of the students studying in classes XI and XII, who are the alumni of the same school. In this context, answer the following questions:
a) Which statistical technique should be used to find out the number of students whose both parents are alumni of this school?
b) How varied are the age of parents of the students of that school?

Q 8

For the annual day celebrations, the teacher is looking for an anchor in a class of 42 students. The teacher would make selection of an anchor on the basis of singing skill, writing skill, as well as monitoring skill.
a) Which mode of data collection should be used?
b) How would you represent the skill of students as data?

Q 9

Differentiate between structured and unstructured data giving one example.

Q 10

The principal of a school wants to do following analysis on the basis of food items procured and sold in the canteen:
a) Compare the purchase and sale price of fruit juice and biscuits.
b) Compare sales of fruit juice, biscuits and samosa.
c) Variation in sale price of fruit juices of different companies for same quantity (in ml).
Create an appropriate dataset for these items (fruit juice, biscuits, samosa) by listing their purchase price and sale price. Apply basic statistical techniques to make the comparisons.

NCERT Solutions Class 12 Computer Science Chapter 7 Understanding Data FAQs

Ques. How many questions are there in NCERT Class 12 Computer Science Chapter 7 Understanding Data?

Ans. There are 10 end-of-chapter exercise questions in NCERT Class 12 Computer Science Chapter 7 Understanding Data. All 10 are solved with full answers and an Expert Solution in the PDF. The mix is two classify-or-identify-the-data questions, two data-collection and processing questions, four choose-the-technique questions on mean, mode, range, standard deviation and frequency, one differentiate question, and one dataset-building question.

Ques. What is the difference between structured and unstructured data?

Ans. Structured data are organised in a fixed, well-defined format, normally a table of rows and columns where each column is an attribute and each row is a record, so they are easy to store, sort and search. Unstructured data have no fixed row-and-column format, such as text, images, audio and video, so they are harder to search and are often described by separate metadata. A student marks table is an example of structured data, while a video clip or an email is an example of unstructured data. This is the answer to Question 9.

Ques. What is the difference between primary and secondary data in Class 12 Computer Science?

Ans. Primary data are collected first-hand by the investigator for the current purpose, for example a fresh survey or by observing students directly. Secondary data already exist for some other purpose and are reused, for example a bank's stored account records. Using stored records is faster and cheaper, which is why Question 3 starts with the bank's own database (secondary data) and only adds a small survey (primary data) to fill the gaps. The observation method in Question 8 is a form of primary data collection.

Ques. When should you use mean, mode, range or standard deviation?

Ans. Use the mean for an average of numeric values, such as the average temperature or the average marks per month. Use the mode for the most common value in category data, such as the most frequent division in a class, because you cannot average labels. Use the range (maximum minus minimum) for a quick spread, and the standard deviation when the question says "how varied" and you want a spread that uses every value. A useful check is that the standard deviation always comes out smaller than the range.

Ques. What are the steps of the data processing cycle?

Ans. The data processing cycle has three stages: input, processing and output. Input means collecting and entering the data, for example marks and family income for all 500 students in Question 2. Processing means cleaning, sorting, filtering and calculating, such as filtering students above 75% in both years AND below 5 lakh income. Output is the final result, such as the sorted scholarship beneficiary list. Following these three labelled stages in an answer shows the examiner you understand the structure of data processing.

Ques. How many pages is the Class 12th Computer Science Understanding Data NCERT Solutions PDF?

Ans. The Understanding Data NCERT Solutions PDF runs about 18 pages and covers all 10 exercise questions with step-by-step answers, sample datasets, worked statistical calculations, and an Expert Solution for each question. Both Normal and HD versions are available from this page, and both are free to download for the 2026-27 session.

Ques. Is the NCERT Solutions for Class 12 Computer Science Chapter 7 aligned with the 2026-27 syllabus?

Ans. Yes. This page reflects the current 2026-27 CBSE syllabus for Class 12 Computer Science. The Understanding Data chapter is unchanged for the current cycle, and every answer follows the NCERT textbook, including the data formats, the data processing cycle, and the statistical measures in section 7.5. The solutions are useful for the CBSE board exam, and the same data ideas help with CUET Computer Science and JEE-level data questions.

Ques. Why is standard deviation preferred over range for measuring variation?

Ans. Both range and standard deviation measure spread, but the range looks at only the two extreme values, the maximum and the minimum, while the standard deviation uses every value in the dataset. This means a single unusually high or low value moves the range a lot but the standard deviation only a little, so the standard deviation gives a more reliable picture of how varied the data really are. That is why Question 7 part (b) uses the standard deviation for the parents' ages rather than the range.