Siksha Sarovar

Siksha Sarovar (sikshasarovar.com) is a free educational web application that helps students in India learn programming and prepare for academic and competitive exams. The platform offers structured coding courses (C, C++, Python, Java, HTML, CSS, PHP, Power BI, AI, Machine Learning, Data Science), complete university curriculum notes for BCA/MCA students with previous year question papers, Class 10 and Class 12 CBSE/HBSE school notes, and dedicated preparation material for SSC, UPSC, Banking, Railway and other government exams. Browsing the site is completely free and requires no account. Users may optionally sign in with Google solely to save their learning progress, quiz scores and personal preferences across devices.

Privacy Policy | Terms of Service | Contact Siksha Sarovar | About Siksha Sarovar

v4.0.9 · PWA
Siksha Sarovar logo
Siksha Sarovar
Your Learning Universe

Siksha Sarovar is a free e-learning platform for coding courses, BCA university notes and competitive exam preparation. Optional Google sign-in saves your learning progress across devices.

Initializing knowledge base…
Compiling modules 0%

Unit 1 — Data, Information and Knowledge

Lesson 2 of 46 in the free Introduction to Data Analytics notes on Siksha Sarovar, written by Rohit Jangra.

Data, Information and Knowledge

Everything in data analytics starts with a simple distinction that students routinely get wrong in exams: data is not information, and information is not knowledge.

The DIKW Pyramid

The classic model is the DIKW hierarchy — Data → Information → Knowledge → Wisdom. Each level adds context and value to the level below it.

Definitions

TermDefinitionKey question it answersExample
DataRaw, unorganised facts, figures, symbols or observations with no meaning on their ownWhat?98, 76, 45, 88
InformationData that has been processed, organised and given context so it becomes meaningfulWho / What / Where / When?"Average marks in Section A = 76.75"
KnowledgeInformation combined with experience, interpretation and understood relationships; usable for decisionsHow?"Sections with average below 50 always have low attendance"
WisdomApplied knowledge with judgement about what should be doneWhy / Should?"Enforce a minimum attendance policy before exams"

A Worked Progression

# ---------- DATA: raw values, no meaning ----------
values = [1200, 1450, 980, 1600, 2100]

# ---------- INFORMATION: add context + processing ----------
# These are daily sales (in rupees) for Mon-Fri at a campus canteen
days = ["Mon", "Tue", "Wed", "Thu", "Fri"]
sales = dict(zip(days, values))
print(sales)
# {'Mon': 1200, 'Tue': 1450, 'Wed': 980, 'Thu': 1600, 'Fri': 2100}
print("Total week sales:", sum(values))    # Total week sales: 7330
print("Average per day:", sum(values) / len(values))   # Average per day: 1466.0

# ---------- KNOWLEDGE: pattern noticed across many weeks ----------
# "Friday sales are consistently the highest; Wednesday is the weekly low."

# ---------- WISDOM: decision informed by that knowledge ----------
# "Staff two extra people on Friday; run a discount combo on Wednesday."

Characteristics of Good Information

For data to become genuinely useful information, it must satisfy several quality attributes — a favourite short-answer question:

AttributeMeaning
AccuracyFree from errors; correctly represents reality
CompletenessNo essential values missing
RelevanceActually related to the decision being made
TimelinessAvailable when it is needed (stale data misleads)
ConsistencySame value everywhere it appears; no contradictions
ReliabilityComes from a trustworthy, verifiable source
AccessibilityRetrievable in a usable format by those who need it
ConcisenessFree from noise and irrelevant detail

Data vs Information — Exam Comparison Table

BasisDataInformation
MeaningRaw, unprocessed factsProcessed, organised data
DependencyIndependent (does not depend on information)Depends on data
ContextHas no contextAlways has context
Decision supportCannot support decisions directlyDirectly supports decisions
Unit of measureBits and bytesMeaningful units (rupees, %, averages)
Example45, 90, "Delhi""Delhi branch scored 45% in Q1, 90% in Q2"

Where Analytics Fits

Data Analytics is the discipline of applying processes and techniques to raw data in order to move it up this pyramid — extracting information, discovering knowledge, and ultimately supporting better decisions.

The remaining lessons of Unit 1 walk through exactly these arrows — how data is collected, sampled, cleaned, preprocessed and transformed so that analysis is even possible.