Join the PiyushAI AI & Data Science Community | Newsletter
📬 PiyushAI  ·  AI & Data Science Learning Community

Stay Ahead in AI, Data Science, Exams & Your Learning Journey

Join 20,000+ learners exploring AI & Data Science — GATE, Bank IT & PSU exam aspirants, IIT Madras BS Degree students, school teachers exploring the CBSE CT & AI curriculum, working professionals, and anyone starting their AI literacy journey. Tell us a little about yourself and get personalised updates, resources, and mentorship alerts — straight from Piyush Wairale.

🎯
Exam & Career Updates First
GATE, Bank IT Officer, PSU & Government job alerts — plus IIT Madras BS Degree guidance.
📚
Free Learning Resources
Study notes, PYQ analysis, practice questions & guides for exams, data science & AI.
🚀
AI Literacy & CBSE CT-AI
AI tools & concepts for everyone, CBSE CT & AI curriculum support for schools & teachers, plus early course access.
✍️ Join the Community — Fill the Form

Takes less than 60 seconds  •  No spam, only what helps you learn & grow

👨‍🎓 20,000+ Students
▶️ 44,000+ YouTube Subscribers
🎓 IIT Madras Alumnus Mentor

Chapter 2 of the Class 6 Artificial Intelligence unit is Basic Data Concepts, allocated 05 hours out of the 20-hour AI block. The single most important thing about teaching it: this is not a chapter about drawing bar graphs. It is the chapter where students first learn that data can be organised honestly or dishonestly, and that a machine can only ever be as sensible as the data it was handed.

Class 6 sits inside a 100-hour Computational Thinking and AI allocation — 40 hours of advanced computational thinking, 20 hours of introductory AI across four chapters of five hours each, and 40 hours of interdisciplinary projects. Chapter 2 is the second of those four. You can see where it sits in the full Class 6 CT and AI syllabus, and how the whole scheme works in the 2026–27 curriculum overview.

There is no coding here. No Python, no spreadsheets required, no AI tool that students must log into. A teacher with chalk, a blackboard and thirty-six students in the room has everything the chapter needs. What the chapter demands instead is a teacher willing to ask an uncomfortable question at the end of every activity: what could someone wrongly conclude from this data?

One sequencing decision matters more than any other, and most schools get it wrong. The NCERT Class 6 mathematics chapter Data Handling and Presentation teaches tally marks, frequency tables, bar graphs and pictographs. Teach that first. This is a recommendation, not a CBSE rule — the handbook does not mandate an order — but if you run Chapter 2 before the maths chapter, you will spend three of your five hours teaching bar-graph mechanics and none of them teaching the thinking. Coordinate with the maths teacher in the first week of the term.


What the syllabus actually says

The CBSE handbook table for Class 6, AI Chapter 2, reads:

Basic Data Concepts — Introduction to data types (numbers, text, images, sound); Simple data organisation and representation using tables or charts — 05 hours

That is the whole entry. Two topics, five hours. Everything below is an unpacking of those two lines, not an addition to them. Where I suggest something the handbook does not require, I say so.

Syllabus topic What students should be able to do by the end
Introduction to data types — numbers Recognise numeric data, distinguish a count from a measurement, and give three examples from their own school day.
Introduction to data types — text Recognise text as data, and explain that a computer stores each letter as a number code.
Introduction to data types — images Explain that a picture is a grid of tiny squares, each square stored as numbers, and reconstruct a small image from a number grid.
Introduction to data types — sound Explain that a sound is measured many times a second and stored as a list of numbers.
Simple data organisation using tables Collect a small real dataset from the class, record it with tally marks, and convert it into a frequency table with correct totals.
Simple data representation using charts Draw a labelled bar chart with a title, axis labels, a sensible scale and value labels; choose between a bar chart and a pie chart with a reason.
Reading data critically (implied by the above) State one thing the data shows and one thing it does not show; identify a chart with a truncated axis as misleading.
The two syllabus lines mapped to observable learning outcomes. The last row is my recommendation, not a separate CBSE topic — but it is where the chapter earns its place in an AI course.

The concepts, explained

What data actually is

Start with a definition students can hold on to: data is a record of something that happened, stored so it can be used later. Not “numbers”. Not “information on a computer”. A record.

The attendance register is data. The mid-day meal count the cook writes on the kitchen wall is data. The rainfall figure the newspaper prints in millimetres is data. A WhatsApp voice note from a student’s mother is data. Your school’s admission forms in a steel almirah are data. None of that requires a computer.

Then draw the distinction that Chapter 1 set up. In Chapter 1, Introduction to AI, students learned that an AI system learns from examples rather than following a fixed rule. Those examples are data. A face-unlock system saw thousands of photographs. A voice assistant heard thousands of recordings. If the school van’s GPS app knows the traffic on the Ring Road at 7:40 a.m., it is because thousands of phones sent their positions.

Say the sentence out loud and put it on the board: no data, no AI. That is the through-line of the chapter and the reason it exists inside an AI unit rather than only inside maths.

The four data types, and the one thing they have in common

The syllabus names four: numbers, text, images, sound. Teach them as four appearances of the same underlying thing.

  • Numbers. 27 students present. 68 mm of rain on Tuesday. A score of 148 for 6. A recharge of ₹239. Split this into counts (whole things you can tally) and measurements (things you read off an instrument — temperature, height, rainfall). Students confuse the two constantly, and it matters later because you cannot sensibly average a count of “auto/rickshaw” but you can average a temperature.
  • Text. Names, answers, addresses, the message “Bring your ID card tomorrow”. A computer does not store the letter N. It stores a number that has been agreed to mean N. This is the moment students first meet the idea of an encoding, and it is enough at Class 6 to say “there is an agreed code table” without naming ASCII or Unicode.
  • Images. A photograph is a grid of tiny squares called pixels. Each square holds numbers describing its brightness or colour. Zoom into any photo on a phone until the squares appear — that thirty-second demonstration does more work than ten minutes of explanation.
  • Sound. A microphone measures the air pressure thousands of times a second and writes down each measurement. Play back the list of numbers fast enough and you hear the voice again. A one-minute WhatsApp voice note is, quite literally, a very long list of numbers.

Then the payoff line, which is the whole point of the topic: whatever it looks like on the outside, inside the machine everything is numbers. That is why a single machine can handle a photograph, a song and a mark sheet.

The four data types as a computer stores themFour panels showing a number, the word Namaste with letter codes, an eight by eight pixel grid with grey values, and a sound waveform sampled into numbered points. A band at the bottom states that everything becomes numbers.Four data types, one storage idea1. NUMBER27students presentStored as: 27Already a number.Nothing to convert.2. TEXTNamasteN → 78a → 97m → 109a → 97s → 115t → 116e → 101Stored as:78 97 109 97 115 116 101An agreed code table.3. IMAGE6000200255Stored as: a grid of64 numbers, 0 to 2550 = black, 255 = white.4. SOUND45-3525-2015-10A voice note, measuredthousands of times a secondStored as:45 -35 25 -20 15 -10 …Different on the outside. Numbers on the inside.This is why one machine can handle a mark sheet, a photograph and a song.
Figure 1 — The four data types named in the syllabus, and how each one is reduced to numbers before a machine can work with it.

Collecting data: where the errors are born

Everything that goes wrong with a conclusion went wrong earlier, usually at collection. Give students a five-stage pipeline and make them name the failure mode at each stage. This is the vocabulary they will reuse in Class 7, where machine learning is introduced, and again in the Class 8 AI project lifecycle.

Three collection failures are worth drilling because Class 6 students commit all three within the first ten minutes of any survey:

  1. Asking the wrong people. A student surveys their four friends on the front bench and reports it as “the class prefers”. Six absentees on the day of the survey means the data describes only who came.
  2. Asking a leading question. “You like the mid-day meal, don’t you?” is not the same question as “What did you think of today’s mid-day meal?” One of them manufactures its answer.
  3. Allowing categories that overlap or leak. If the options are walk, cycle, bus, car, and a student comes by cycle for half the way and walks the rest, where does the tally mark go? Decide the rule before collecting, and write it down.

Add a habit that costs nothing: record the total number of people asked, the date, and who was absent. A dataset without that context cannot be judged. This connects directly to the abstraction work in the computational thinking half of the year — see our Class 6 abstract thinking module for how deciding what to leave out is itself a skill.

The five-stage data pipeline with its failure mode at each stageFive boxes joined by arrows reading Collect, Check, Organise, Represent, Conclude. Under each box a red panel names what typically goes wrong at that stage.The data pipeline, and where it breaks1. COLLECTAsk, count, measure2. CHECKTotals, gaps, oddities3. ORGANISETally, frequency table4. REPRESENTTable or chart5. CONCLUDESay what it showsWhat goes wrong at each stageAsked only thefront benchAbsentees leftout. Leadingquestion asked.Nobody addedup the total36 in class buttallies add to 41.Double counting.OverlappingcategoriesCycle-then-walkcounted twice.No Other option.Axis does notstart at zeroNo title, no unit,uneven scale,pie with 9 slices.Claiming morethan was askedOne class becomesall of India.Guessing causes.A mistake at stage 1 cannot be repaired at stage 5.
Figure 2 — The five stages of working with data, with the typical Class 6 failure written under each one. Ask students to name the stage where a given error happened.

Organising data: tally to frequency table

Raw data is unusable. Thirty-six shouted answers are noise until they are recorded in a structure. That structure — a tally sheet becoming a frequency table — is the first act of organisation students perform, and it maps exactly onto what the NCERT maths chapter Data Handling and Presentation teaches.

Insist on three non-negotiables:

  • Tally marks in groups of five, with the fifth stroke laid diagonally across the previous four. Not because it is prettier, but because it makes recounting possible.
  • A total row. If the class has 36 students and the tallies add to 41, something is wrong and it must be found before anything is drawn.
  • Column headings with units. “Rainfall (mm)” not “Rainfall”. A number without a unit is not data.

The frequency table is the pivot point of the whole chapter. Everything before it is collection; everything after it is presentation. Students who can build a clean frequency table can build any chart the syllabus asks for.

The same class travel data shown as tally marks, a frequency table and a bar chartThree aligned panels. The left shows tally strokes for six travel modes, the centre shows the same counts as a frequency table with a total of thirty-six, and the right shows horizontal bars of the same lengths with value labels.One dataset, three forms: tally → frequency table → chartA. Tally sheetwhile asking the classB. Frequency tablecounted and totalledC. Bar chartcompared at a glanceWalkCycleSchool busAutoCarTrainEvery fifth stroke crosses the four.Mode of travelCountWalk12Cycle6School bus9Auto / rickshaw5Car3Train1TOTAL36Total must match class strength.0369121269531WalkCycleBusAutoCarTrainNumber of students
Figure 3 — The same thirty-six answers in three forms. Nothing is added between panels; only the readability changes.

Representing data: tables and charts

The syllabus says “tables or charts”. Teach the choice, not just the drawing. A table is better when exact values matter — a mark sheet, a rainfall record, a fee register. A chart is better when comparison matters — which mode of travel dominates, whether attendance is rising.

For a bar chart, the checklist is short and should be memorised:

  1. A title that says what and who. “How Class 6 travels to school”, not “Bar Graph”.
  2. Both axes labelled, with units where relevant.
  3. A scale that starts at zero and moves in equal steps.
  4. Bars of equal width with equal gaps.
  5. The value written above each bar. This costs one second and prevents half of all misreadings.
Bar chart of how Class 6 travels to schoolA vertical bar chart with a zero-based y-axis from zero to fourteen, ticks every two, gridlines and value labels. Walk twelve, cycle six, school bus nine, auto or rickshaw five, car three, train one.How Class 6 travels to schoolAll 36 students asked on 12 July. No absentees.02468101214Number of students1269531WalkCycleSchoolbusAuto /rickshawCarTrainMode of travel
Figure 4 — A bar chart that passes the checklist: title, subtitle stating who was asked, labelled axes, zero-based scale, even ticks, gridlines and value labels.

Pie charts are where Class 6 goes wrong, usually because the drawing software makes them easy. A pie chart answers exactly one question: what share of the whole is each part? It fails the moment there are too many slices or the slices are similar in size. Give students a working rule: more than five slices, or two slices you cannot tell apart by eye, means use a bar chart instead.

Pie chart of the same travel data with a warning about when pie charts stop workingA pie chart divided into six slices with percentage labels and a legend giving the count and percentage for each mode. A panel on the right warns that pie charts fail with more than five slices or with similar sized slices.Share of Class 6 by mode of travel (36 students)33%17%25%14%Car 8% and Train 3% are too thin to label inside.LegendWalk — 12 students, 33%Cycle — 6 students, 17%School bus — 9 students, 25%Auto / rickshaw — 5, 14%Car — 3 students, 8%Train — 1 student, 3%When a pie chart stops working1. More than five slices. This pie has six, and two of them are already unreadable without the legend.2. Slices of similar size. The eye cannot rank 25% against 33% by angle. A bar chart makes it obvious.3. Parts that are not parts of one whole. Do not pie-chart rainfall across months — the months are not shares.Rule: over five slices, or ties → use a bar chart.This pie is already at its limit.
Figure 5 — The identical data as a pie. It works for the three largest shares and fails for the two smallest, which is exactly the point to teach.

Reading a chart honestly

This is the section that makes Chapter 2 an AI chapter. Two questions, asked every single time:

Question one: what does this chart show? Students answer this easily. Walking is the most common. Twelve students walk.

Question two: what could someone wrongly conclude from this data? This is harder and far more valuable. From the travel chart, wrong conclusions include: “most Indian children walk to school” (one class, one school, one city); “the school bus is unpopular” (perhaps the bus does not go to those localities at all); “nobody in Class 6 owns a car” (the question was about travel, not ownership); “this is how they travel every day” (it was one day, and it was July — ask again in December).

You are teaching sampling and bias without using either word. The idea underneath is simply: the data describes who you asked, when you asked, and what you asked — nothing more. When students meet training data in Class 7, and biased training data in the Class 8 project lifecycle, this is the hook the new learning attaches to. It also connects forward to Chapter 4 on AI ethics and digital responsibility, where fairness stops being abstract.

Then show them the mechanical trick that makes charts lie: cutting the y-axis. Two charts, identical numbers, opposite impressions.

Two charts of identical data giving opposite impressionsOn the left a chart with a y-axis starting at eight makes walking look four times more common than the school bus. On the right the same numbers on a zero-based axis show twelve against nine, a modest difference.Same two numbers. Two very different pictures.MISLEADING: axis starts at 88910111213129WalkSchool busWalking looks about 4 times the bus.It is not. The bottom of the chart was cut off.HONEST: axis starts at 002468101214129WalkSchool busWalking is a bit more common. That is all.12 against 9 — a difference of three students.The trick has a name: a truncated axis. First thing to check on any chart is where the scale starts.
Figure 6 — The truncated axis. Ask students to find the number 8 on the left chart before they look at anything else.

How to teach it — the five hours

Period Focus In-class activity What students leave with
1 What data is, and why AI needs it Data hunt around the school: list ten pieces of data visible in the building, classify each as number, text, image or sound. A working definition of data and the sentence “no data, no AI”.
2 The four data types, and how they become numbers Pixel-grid colouring activity (Activity 1 below). Zoom into a photograph on the teacher’s phone. The idea that images, sound and text are all stored as numbers.
3 Collecting and organising Real class survey with tally marks, converted to a frequency table with a total row. A completed, checked frequency table in their notebook.
4 Representing with charts Draw a bar chart from period 3 data; attempt the same as a pie; decide which is better and defend it. A labelled bar chart that passes the five-point checklist.
5 Reading honestly, and the wrong conclusion Misleading-chart gallery walk; then each group writes one true statement and one wrong conclusion from their own data. The habit of asking what the data does not show.
A five-period plan. This split is my recommendation; CBSE specifies the 05-hour total, not the internal division.

Period 1 should not begin with a definition on the board. Send students out for ten minutes with a clipboard to find data in the school — the notice board, the attendance register, the water-cooler temperature sticker, the fee receipt, the sports scoreboard. Collect the findings and build the definition from what they brought back. Close by connecting to Chapter 1: every AI example they discussed last week ran on data collected from somebody.

Period 2 is the conceptual heart. Run the pixel-grid activity in the first twenty-five minutes so students discover the image-as-numbers idea themselves rather than being told. Spend the remaining time on text codes and the sound waveform. Do not go anywhere near binary or bits — that is not in the Class 6 scope, and it will lose the class.

Period 3 is a working period. Pick a question that genuinely varies across your class and that nobody will be embarrassed to answer. Travel mode works everywhere. Favourite mid-day meal item, number of siblings, and month of birth also work. Avoid anything touching family income, caste or phone ownership.

Period 4 is drawing, and it is slower than you expect. Thirty-six students choosing a scale on squared paper takes twenty minutes on its own. If the maths chapter has already been taught, this halves. If it has not, you will lose the analysis period to catching up — which is the exact reason for sequencing the maths chapter first.

Period 5 is the one teachers skip when they run short, and it is the one that must survive. Put four charts on the board — one with no title, one with a truncated axis, one pie with nine slices, one with uneven scale gaps — and let groups diagnose them. Then turn the question on their own data. Our CT and AI teacher training programme treats this period as the assessable core of the chapter, not the optional extra.


Unplugged activities

Activity 1 — The pixel grid: a picture hidden in numbers

Time: 25 minutes. Materials: a printed or hand-drawn 8×8 squared grid per student, pencils, and one number key on the board. No devices.

  1. Draw an 8×8 grid on the board and number the rows 1–8 and the columns 1–8. Ask students to copy it, or hand out the printed sheet.
  2. Write the shading key on the board: 0 = fill black, 128 = shade grey, 255 = leave white. Nothing else is explained.
  3. Read out the 64 numbers row by row, slowly, twice. Choose a simple shape — a smiling face, a diya, a cricket bat, the first letter of the school’s name.
  4. Students shade each cell as the number is called. Tell them nothing about what they are drawing.
  5. When the last row is done, ask them to hold up their grids. The image appears across the room simultaneously. Let the reaction happen.
  6. Now ask: how many numbers did it take? Sixty-four. A real photograph is a grid of millions.
  7. Extension for a strong class: read the same 64 numbers in the wrong order — column by column instead of row by row — and let them see the picture break. The numbers alone are not enough; the arrangement is part of the data.

Discussion question: If a picture is only numbers, could a machine change those numbers to change the picture? What would that mean for a photograph used as evidence?

Activity 2 — The class survey, and the wrong conclusion

Time: 35 minutes, spanning periods 3 and 5. Materials: notebook, squared paper, blackboard. No devices.

  1. As a class, agree on one question with four to six clear options. Write the exact wording on the board. Argue about the wording for two minutes — this is not a delay, it is the lesson.
  2. Agree the rules before collecting: what happens if someone uses two modes, what counts as “Other”, what to do about absentees.
  3. Two students run the tally at the board while everyone answers by raising hands, one option at a time. Everyone else tallies in their notebook.
  4. Convert to a frequency table. Add the total row. If the total does not match the number of students present, stop and find the error before continuing.
  5. Record three pieces of context under the table: today’s date, the number of students present, and the number absent.
  6. Each student draws a bar chart from the table. Apply the five-point checklist to a neighbour’s chart, not their own.
  7. In period 5, each group writes two sentences on a slip: one thing the data definitely shows, and one thing someone might wrongly conclude from it. Read the wrong conclusions aloud and let the class judge each one.

Discussion question: What could someone wrongly conclude from this data? Push until they produce at least three distinct errors: over-generalising to other classes or schools, confusing correlation with cause, and forgetting the absentees.

Activity 3 — Chart hospital

Time: 20 minutes. Materials: four deliberately broken charts drawn on chart paper or on the board; one diagnosis slip per group.

  1. Prepare four patients in advance. Patient A: a bar chart with no title and no axis labels. Patient B: monsoon rainfall in mm with a y-axis starting at 60. Patient C: a pie chart of nine favourite subjects. Patient D: a bar chart whose y-axis reads 0, 5, 10, 50, 100 at equal spacing.
  2. Groups of four rotate through the charts, three minutes each, writing one diagnosis per chart.
  3. Each group presents the single worst problem they found and the specific fix.
  4. Rank the four patients from most misleading to least, as a class, with a reason for the ranking.
  5. Finish by asking which of the four errors could have been an honest mistake and which looks deliberate.

Discussion question: A chart cannot contain a false number and still be a chart of the real data — so how can a chart with entirely true numbers still mislead someone?


Worksheet

Use the following table for questions 5 to 8.

Day Rainfall (mm) Highest temperature (°C)
Monday 12 31
Tuesday 68 27
Wednesday 0 34
Thursday 45 28
Friday 5 33
Saturday 90 26
Rainfall and temperature recorded at the school weather station, one week in July.

Part A — Recall

  1. Name the four types of data listed in your syllabus, and give one example of each from your school.
  2. What does a computer store instead of the letter M?
  3. What is a pixel?
  4. Write two things that every bar chart must have, apart from the bars themselves.

Part B — Apply (use the rainfall table)

  1. How much rain fell on Thursday?
  2. Which day had the highest temperature, and what was it?
  3. What was the total rainfall for the week?
  4. On the two wettest days, what happened to the temperature? Write one sentence.
  5. A student records the class’s favourite mid-day meal item as: rice 14, roti 9, khichdi 7, dal 6. Draw a labelled bar chart with a scale from 0 to 16 in steps of 2. Write the value above each bar.
  6. Convert the same mid-day meal data into a frequency table with a total row. How many students were asked?

Part C — Think

  1. A newspaper prints a bar chart of the runs scored by two batters. The bars show 48 and 52, but the taller bar looks three times the height of the shorter one. What has the newspaper done, and why is it misleading?
  2. A student surveys the six friends sitting near her and writes: “Class 6 prefers khichdi.” Give two reasons why this conclusion is unsafe.
  3. Your school wants to know which subject students find most difficult. You may ask only 20 of the 200 students in the school. How will you choose the 20? Give one reason for your method.
  4. A voice note from your friend is 30 seconds long. Explain, in two sentences, how it is stored as data.
  5. Someone shows you a pie chart with eleven slices. Suggest a better chart and explain why.
  6. A school claims: “Attendance improved after we started the new morning assembly.” The data covers one week before and one week after. What could someone wrongly conclude, and what extra data would you want?

Answer key

  1. Numbers, text, images, sound. Examples: attendance count; a student’s name on the register; the school photograph; the morning bell recording.
  2. A number code that has been agreed to mean M. (Accept: a number from a standard code table.)
  3. One of the tiny squares that make up a picture, storing numbers for its brightness or colour.
  4. Any two of: title, labelled axes with units, an even scale starting at zero, equal bar widths, value labels.
  5. 45 mm.
  6. Wednesday, 34 °C.
  7. 12 + 68 + 0 + 45 + 5 + 90 = 220 mm.
  8. Saturday (90 mm) and Tuesday (68 mm) were the wettest, and the temperature was lowest on those days — 26 °C and 27 °C. Accept any sentence noting that temperature fell as rainfall rose. Do not accept “rain causes low temperature” as a proven claim.
  9. Chart with title (for example “Favourite mid-day meal item, Class 6”), y-axis “Number of students” 0–16 in steps of 2, x-axis “Meal item”, four equal bars of heights 14, 9, 7, 6 with values written above.
  10. Rice 14, roti 9, khichdi 7, dal 6; total 36 students asked.
  11. It has cut the y-axis so the scale does not start at zero (a truncated axis). The real difference is 4 runs, roughly 8 per cent, but the picture suggests one batter scored three times as much.
  12. Any two of: only six people were asked out of the whole class; they were all her friends and friends tend to be similar; the rest of the class and any absentees were never asked; a different day’s meal might give a different answer.
  13. Any reasonable method that spreads the sample across the school — for example, choose four students from each of the five classes, or pick every tenth name from the school register. Reason: asking only one class or only one’s own friends would describe that group, not the school.
  14. The microphone measures the sound thousands of times each second and each measurement is written down as a number. The 30-second note is therefore stored as a very long list of numbers, which are played back in order to recreate the voice.
  15. A bar chart. With eleven slices the angles are too similar to compare and the labels will not fit; bars can be ranked by height and read against a scale.
  16. Wrong conclusion: that the assembly caused the improvement. Something else may have changed — the weather, an exam week, a festival, illness. Extra data wanted: several months before and after, attendance in a class that did not change its assembly, and the reasons recorded for absence.

Common misconceptions

What students or teachers believe What is actually true How to correct it
Data means numbers only. Names, photographs, voice notes and answers in words are all data. Numbers are one of four types in this syllabus. Do the school data hunt in period 1 and insist that at least four of the ten items found are not numbers.
A photo is a picture, not data. A photo is a grid of pixels, each holding numbers. It is data in the most literal sense. Run the pixel-grid activity, then zoom into a real photograph on a phone until the squares are visible.
More data is always better. Data from the wrong people, or the wrong question, does not improve by being larger. A thousand answers from one locality still describes one locality. Ask: would 500 replies from only the front three benches tell you more about the class than 36 from everyone?
A chart cannot lie, because the numbers are real. Every number can be true while the picture is dishonest. A truncated axis, an uneven scale or a missing category does the lying. Show Figure 6, then run Chart Hospital. Make students state which part of the chart, not which number, is misleading.
A pie chart is a fancier bar chart. A pie chart only answers “what share of the whole?” and fails past five slices or with similar-sized slices. Have students draw the same data both ways and rank the smallest two categories from each. The pie will defeat them.
This chapter is just the maths chapter repeated. Maths teaches how to build the table and chart. This chapter adds where the data came from, what it leaves out, and what someone might wrongly conclude. End every activity with the wrong-conclusion question. That question does not appear in the maths chapter.
The data collected in class is “the answer”. It is one sample, from one day, from one group. It describes who was asked and nothing else. Repeat the same survey in a different section or a different month and compare. The change is the argument.
Students need a computer or spreadsheet to do this chapter. The Class 6 AI content requires no coding and no AI tool. Chalk, squared paper and thirty-six students are sufficient. Run all five periods unplugged once before deciding any device is needed. See our AI literacy guide for teachers.

Assessment

At this stage the CT and AI curriculum is competency-based and largely internal. Assess what students do — the survey they ran, the table they built, the chart they drew, the wrong conclusion they identified — rather than definitions they can recite. Do not invent a marks weighting; the handbook does not specify one for this chapter, and schools should follow whatever internal scheme their assessment policy sets.

Four things are worth assessing:

  • Can the student classify a piece of data into the correct type and justify it?
  • Is their frequency table complete, totalled and internally consistent?
  • Does their chart pass the five-point checklist without prompting?
  • Can they state one thing the data does not show?
Criterion Beginning Developing Secure
Identifying data types Names data types only when prompted; treats all data as numbers. Classifies clear examples correctly; hesitates on images and sound. Classifies any example confidently and explains that all four are stored as numbers.
Collecting and organising Tally marks are disordered; no total, or a total that does not match. Tally and table are correct but context (date, who was asked, absentees) is missing. Table is correct, totalled and checked, with the collection context recorded alongside it.
Representing with a chart Bars drawn without title, labels or an even scale. Chart is readable; one or two checklist items missing, usually value labels or units. Chart passes all five checklist points, and the student can justify choosing a bar over a pie.
Reading data critically States only what the chart shows; sees no limits to the data. Identifies one wrong conclusion when prompted by the teacher. Independently names what the data does not show, and spots a truncated axis unaided.
A three-level rubric. Descriptors are written so a teacher can place a student from one piece of work, not from a test score.

Interdisciplinary links

Class 6 carries 40 hours of interdisciplinary projects, and Chapter 2 is the single most reusable chapter in the AI block — almost every project needs data collected, organised and presented. Use it as the service chapter it is.

  • Mathematics — Data Handling and Presentation. The direct partner. Teach the NCERT chapter first, then let the AI chapter supply the real datasets the maths chapter needs. Project: the class runs a survey the maths teacher marks for accuracy and the AI teacher marks for honesty.
  • Science. A weekly weather log — temperature in °C and rainfall in mm, recorded at the same time each day for a month. Students discover for themselves why the reading time must be fixed, which is a data-quality lesson no lecture delivers.
  • Social science. The Census of India as the country’s largest data collection exercise. What is counted, what is not, and who might be missed. This connects the sampling idea to something at national scale.
  • Languages. Word-frequency counts in a poem or a news report, presented as a bar chart. Then the harder question: does the most frequent word tell you what the passage is about?
  • Art and design. Pixel art on squared paper, exchanged as number grids between pairs. One student encodes, the other decodes. Extend to a 16×16 grid with three grey levels.
  • Physical education and health. Heart rate before and after skipping, across the class. A genuine measurement dataset with natural variation, and an obvious wrong conclusion waiting to be made.

Each of these leans on the computational thinking half of the year too. Deciding what to record and what to ignore is abstraction; spotting that rainfall rises and temperature falls is pattern recognition, which Chapter 3 takes up directly; breaking a survey into agree-the-question, collect, check, present is decomposition. For the full picture of how the strands interlock, see the CT and AI pillar guide.


Frequently asked questions

Do students need a computer or a spreadsheet for this chapter?

No. The Class 6 AI content requires no coding, no Python and no AI tool. All five hours can be taught with a blackboard, squared paper and the students in the room. If your school has computers, a spreadsheet can speed up chart drawing in period 4, but it is not required and it should not replace hand-drawing at least one chart.

Should we teach the maths chapter Data Handling and Presentation before this one?

Yes, and this is the sequencing decision most schools get wrong. The AI chapter assumes tally marks, frequency tables and bar graphs are already familiar. If they are not, you will spend three of your five hours on drawing mechanics and lose the analysis. Coordinate with the maths teacher at the start of the term. CBSE does not mandate this order; it is a practical recommendation.

Is binary or ASCII part of the Class 6 syllabus?

No. The syllabus line says introduction to data types, not number systems. It is enough that students understand a letter is stored as an agreed number code and a picture as a grid of numbers. Introducing binary at Class 6 adds difficulty without adding understanding.

How is this chapter assessed?

At this stage the CT and AI curriculum is competency-based and largely internal to the school. Assess the artefacts students produce: the frequency table, the labelled chart, and their answer to what the data does not show. The handbook does not prescribe a marks weighting for individual chapters, so follow your school’s internal assessment policy.

What if the class survey produces embarrassing or sensitive answers?

Choose the question carefully in advance. Travel mode, mid-day meal preference, birth month and number of siblings are safe in almost every classroom. Avoid family income, caste, religion, phone or vehicle ownership, and anything about marks. The point of the activity is the method, not the topic, so pick the least sensitive topic that still varies across the class.

How does this chapter connect to Class 7 and Class 8?

Directly. Class 7 introduces machine learning, where a model learns from training data; students who already ask who was asked and what was left out will understand biased training data immediately. Class 8 covers the AI project lifecycle, in which data collection and preparation is an explicit stage. Chapter 2 is where that vocabulary starts.


PiyushAI is founded by Piyush Wairale (IIT Madras) and works with schools on Redefining Education and Exam Preparation with AI. We build classroom-ready teaching guides for the CBSE Computational Thinking and AI curriculum, run CT and AI teacher training, and maintain a plain-language AI glossary and an AI literacy track for students. If you are planning the 2026–27 rollout, start with the school AI readiness score.

Related: Class 6 AI Chapter 1: Introduction to AI · Chapter 3: Pattern Recognition and Decision Making · Chapter 4: AI Ethics and Digital Responsibility · Class 6 CT and AI syllabus · Class 5 syllabus · Class 7 syllabus · Pattern recognition module · Algorithmic thinking module

Source: CBSE Computational Thinking & Artificial Intelligence handbook, Class 6 (2026–27), cbseacademic.nic.in.

Share This Story, Choose Your Platform!
Join the PiyushAI AI & Data Science Community | Newsletter
📬 PiyushAI  ·  AI & Data Science Learning Community

Stay Ahead in AI, Data Science, Exams & Your Learning Journey

Join 20,000+ learners exploring AI & Data Science — GATE, Bank IT & PSU exam aspirants, IIT Madras BS Degree students, school teachers exploring the CBSE CT & AI curriculum, working professionals, and anyone starting their AI literacy journey. Tell us a little about yourself and get personalised updates, resources, and mentorship alerts — straight from Piyush Wairale.

🎯
Exam & Career Updates First
GATE, Bank IT Officer, PSU & Government job alerts — plus IIT Madras BS Degree guidance.
📚
Free Learning Resources
Study notes, PYQ analysis, practice questions & guides for exams, data science & AI.
🚀
AI Literacy & CBSE CT-AI
AI tools & concepts for everyone, CBSE CT & AI curriculum support for schools & teachers, plus early course access.
✍️ Join the Community — Fill the Form

Takes less than 60 seconds  •  No spam, only what helps you learn & grow

👨‍🎓 20,000+ Students
▶️ 44,000+ YouTube Subscribers
🎓 IIT Madras Alumnus Mentor

Recent Post

Connect with PiyushAI | YouTube & Telegram Community
🔗 Connect With Us

Learn Daily, Wherever You Are

Free lectures, exam updates, PYQ discussions, and job alerts — delivered through our YouTube channel and Telegram communities.

▶️
YouTube Channel
Piyush Wairale IITM
Free lectures on AI, Data Science, GATE preparation & exam strategy — trusted by 44,000+ subscribers.
Subscribe Now →
🌐
Official Website
piyushwairale.com
Complete courses, GATE DA test series, mock exams & structured preparation programs — all in one place.
Explore Courses →

One Comment

  1. […] 2. Basic Data Concepts […]

Leave A Comment