Skip to content

Instruction and Information


1. Instruction

Definition

  • An instruction is a command or order given to a computer to perform a specific task.
  • It tells the computer what action to perform on the data.

Examples

  • Addition: ADD A, B (add numbers A and B).
  • Printing: PRINT "Hello".
  • Storing: SAVE file1.txt.

Key Features of Instruction

  • Precise & Clear – Must be in a format the computer understands (machine code or programming language).
  • Step-by-Step – Instructions are executed in a sequence (called a program).
  • Operation-Oriented – Deals with actions like input, processing, or output.

Types of Instructions

  1. Input Instructions → Tell the computer to accept data (e.g., reading a value).
  2. Processing Instructions → Perform calculations or comparisons (e.g., ADD, COMPARE).
  3. Output Instructions → Display or print results (e.g., DISPLAY).
  4. Control Instructions → Direct program flow (e.g., IF…ELSE, JUMP).

2. Information

Definition

  • Information is processed, organized, or structured data that is meaningful and useful for decision-making.

Examples

  • Data: 500, 700, 900
  • Information: Total sales this week = ₹2100

Key Features of Information

  • Meaningful – Adds value to raw data.
  • Accurate & Relevant – Helps managers and users.
  • Timely – Must be available at the right time.
  • Useful for Decision-Making – Drives business strategies.

3. Difference Between Instruction and Information

AspectInstructionInformation
DefinitionA command given to the computerProcessed data with meaning
PurposeTells the computer what to doHelps users understand & decide
FormProgram code / commandReports, charts, results
UserComputer executesHumans interpret
ExampleADD A, B“Total = 200”

4. Relationship

  • Instruction tells the computer how to process.
  • Data is the input.
  • Information is the final output.

👉 Flow:
Data → Instruction (Processing) → Information


Student Summary

  • Instruction = Command to the computer.
  • Information = Useful output after processing data.
  • Both are essential: Without instructions, computer can’t process; without information, processing has no value.