13.1 Computer Fundamentals, Generations & Hardware

Key Takeaways

  • Computers evolved through five generations defined by their core electronic component: vacuum tube, transistor, integrated circuit, microprocessor, and AI/parallel processing.
  • The CPU contains an ALU (arithmetic and logic), a Control Unit (instruction direction), and fast Registers that hold the data being processed.
  • Memory is arranged in a hierarchy from fast small registers down to slow large HDD/SSD storage; RAM is volatile and loses its contents when power is switched off.
  • One byte equals 8 bits; KB, MB, GB, and TB each multiply by 1,024, so a one-page revenue record PDF is typically a few hundred KB.
  • OMR (Optical Mark Recognition) reads bubble-sheet answer sheets — the same technology used to score the VAO exam itself.
Last updated: August 2026

Generations of Computers

Computers have evolved through five recognised generations, each defined by the core electronic component of its era. Understanding this progression explains why modern machines are small, fast, and cheap.

GenerationPeriodKey ComponentRepresentative Machine
First1940s–1950sVacuum tubeENIAC, UNIVAC
Second1950s–1960sTransistorIBM 1401
Third1960s–1970sIntegrated Circuit (IC)IBM System/360
Fourth1970s–presentMicroprocessorIBM PC, modern laptops
FifthPresent–futureArtificial intelligence, parallel processingAI servers, quantum prototypes

The vacuum tube was a fragile, heat-generating glass device about the size of a light bulb; a single machine like ENIAC used thousands of them and consumed enough electricity for a small village. The transistor, invented at Bell Labs in 1947, was smaller, cooler, and far more reliable. The integrated circuit packed many transistors onto one silicon chip, shrinking a room-sized computer into a cabinet. The microprocessor placed an entire CPU on a single chip — Intel's 4004 of 1971 was the first — and made personal computers possible. Fifth-generation work focuses on artificial intelligence, parallel processing, and emerging architectures such as quantum computing.

Types of Computers

  • Desktop — a stationary personal computer with separate monitor, keyboard, and system unit; the standard office machine
  • Laptop — a portable all-in-one computer with built-in screen, keyboard, and touchpad
  • Tablet — a touchscreen handheld device, typically running a mobile operating system
  • Server — a high-capacity computer that supplies data and services to other machines on a network
  • Mainframe — a large, high-reliability system used by banks and government departments for bulk data processing
  • Supercomputer — the fastest class of machines, used for scientific simulation, weather modelling, and defence research

For a Village Administrative Officer, a desktop or laptop running standard office software is the typical working tool. The state data centres that host Karnataka's land-record databases run mainframe-class and server-class machines behind the scenes.

Hardware Components

Computer hardware is the physical equipment you can touch. The central component is the Central Processing Unit (CPU), which carries out the instructions of every program. Internally the CPU contains:

  • Arithmetic Logic Unit (ALU) — performs arithmetic (add, subtract, multiply) and logical (AND, OR, NOT) operations
  • Control Unit (CU) — directs the fetch–decode–execute cycle, telling other parts what to do
  • Registers — tiny, ultra-fast storage locations inside the CPU that hold the data and instructions currently being processed

Hardware Components Table

ComponentRoleCommon Example
CPUProcesses instructionsIntel Core i3, AMD Ryzen
RAMTemporary working memory4 GB, 8 GB DDR4
ROMPermanent boot instructionsBIOS / UEFI chip
HDD / SSDLong-term storage500 GB HDD, 256 GB SSD
MotherboardConnects all components
Power Supply (SMPS)Provides electrical power

Input devices feed data into the computer: keyboard, mouse, scanner, microphone, and Optical Mark Recognition (OMR) readers. OMR detects pencil or pen marks in predefined positions on a form — the same technology used to read the bubble-sheet answer sheets of the VAO examination itself. Optical Character Recognition (OCR) converts scanned printed text into editable characters, useful for digitising old handwritten or printed revenue records into searchable files.

Output devices present results to the user: the monitor (visual display), printer (hard copy on paper), and speaker (audio).

Memory Hierarchy

Memory is arranged by speed and proximity to the CPU. Faster memory is smaller and costlier per byte; slower memory is larger and cheaper. The hierarchy, from fastest to slowest, is:

LevelTypeSpeedTypical Size
1RegistersFastestBytes
2Cache (L1 / L2 / L3)Very fastKB – MB
3RAMFastGB
4ROMConstantMB
5HDD / SSDSlowTB

RAM (Random Access Memory) is volatile — its contents are lost when power is switched off, which is why you must save your work to disk. ROM (Read-Only Memory) holds permanent boot instructions and is non-volatile.

Storage Units

  • Bit — the smallest unit; a binary 0 or 1
  • Byte — 8 bits; holds one ASCII character
  • Kilobyte (KB) — 1,024 bytes
  • Megabyte (MB) — 1,024 KB
  • Gigabyte (GB) — 1,024 MB
  • Terabyte (TB) — 1,024 GB

A single-page revenue record PDF may be 100–500 KB; a scanned village map could be 5–50 MB; a backup of a year's records might run into several GB.

Ports, Peripherals and Abbreviations

TermExpansion / meaning
CPUCentral Processing Unit — the "brain"; contains the ALU, control unit and registers
ALUArithmetic Logic Unit
RAM / ROMRandom Access Memory (volatile) / Read-Only Memory (non-volatile)
PROM / EPROM / EEPROMProgrammable / Erasable Programmable / Electrically Erasable Programmable ROM
BIOS / UEFIBasic Input Output System — the firmware that boots the machine
USBUniversal Serial Bus
HDMI / VGADisplay connections — digital / analogue
SMPSSwitched Mode Power Supply
UPSUninterruptible Power Supply — essential in a rural office with unreliable power
HDD / SSDHard Disk Drive (magnetic, moving parts) / Solid State Drive (flash, faster, no moving parts)
GPUGraphics Processing Unit
DPI / PPIDots per inch / pixels per inch — scanner and display resolution
MICRMagnetic Ink Character Recognition — used on cheques
OMROptical Mark Recognition — reads the shaded bubbles on an answer sheet
OCROptical Character Recognition — converts a scanned image of text into editable characters
BCR / QRBar Code Reader / Quick Response code

The one you will be asked: the VAO examination itself is read by an OMR scanner, which detects the position of a mark rather than its shape. OCR is different — it recognises the characters in a scanned document, and it is what makes old scanned revenue records searchable under the Bhu-Suraksha digitisation programme. Confusing OMR with OCR is the most common error in this topic.

Number Systems in a Little More Depth

SystemBaseDigitsUse
Binary20, 1The machine's own representation — circuits have two stable states
Octal80–7Compact shorthand for binary
Decimal100–9Human counting
Hexadecimal160–9, A–FMemory addresses, colour codes

Decimal to binary, worked: convert 25. Divide repeatedly by 2 and read the remainders upward — 25/2 = 12 r 1; 12/2 = 6 r 0; 6/2 = 3 r 0; 3/2 = 1 r 1; 1/2 = 0 r 1. Reading upward gives 11001. Check by place values: 16 + 8 + 0 + 0 + 1 = 25. ✔

Binary to decimal, worked: 1011 = (1 × 8) + (0 × 4) + (1 × 2) + (1 × 1) = 11.

Character encoding: ASCII is a 7-bit code covering 128 characters, in which 'A' = 65, 'a' = 97, '0' = 48 and space = 32. Unicode extends this to nearly every world script — including Kannada — which is precisely why a village office can type a citizen's name in Kannada in a government form at all. UTF-8 is the dominant Unicode encoding.

Storage Media

Above the terabyte the ladder continues to petabyte and exabyte, each step again being 1,024 of the previous unit, and below the byte sits the nibble of 4 bits.

Storage media by type: magnetic (HDD, magnetic tape for archival backup), optical (CD 700 MB, DVD 4.7 GB, Blu-ray), and semiconductor or flash (SSD, pen drive, memory card). Cloud storage keeps files on remote servers accessible over the internet — the model behind Bhoomi and the state data centre.

Names in the History of Computing

One sentence covers most generation questions: each generation reduced size, cost and power consumption while increasing speed and reliability. Alongside that, learn the people and machines.

Names worth knowing: Charles Babbage, the father of the computer, who designed the Analytical Engine; Ada Lovelace, regarded as the first programmer; Alan Turing, the founder of theoretical computer science; John von Neumann, whose stored-program architecture every modern computer follows; and ENIAC and UNIVAC as the first-generation landmarks. India's supercomputing line runs from PARAM (C-DAC) through the National Supercomputing Mission.

Exam Angle for Section 13.1

Computer Knowledge is the most predictable scoring block in Paper 2 because the syllabus is finite and the questions are definitional. In this section prioritise the generation-to-component table, the CPU's three parts, the abbreviation list, the OMR versus OCR distinction, and the 1 byte = 8 bits storage ladder. Do one decimal-to-binary conversion by hand so the method is available if a conversion appears, but do not spend long there — this level rarely asks more than a small conversion.

Test Your Knowledge

Which electronic component defines the first generation of computers?

A
B
C
D
Test Your Knowledge

How many bits are there in one byte?

A
B
C
D
Test Your Knowledge

Which technology, used to read the VAO exam answer sheets, is also an input device category?

A
B
C
D
Test Your Knowledge

What is the essential difference between OMR and OCR, and which is used to evaluate the VAO answer sheet?

A
B
C
D
Test Your Knowledge

Convert the decimal number 25 to binary.

A
B
C
D