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.
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.
| Generation | Period | Key Component | Representative Machine |
|---|---|---|---|
| First | 1940s–1950s | Vacuum tube | ENIAC, UNIVAC |
| Second | 1950s–1960s | Transistor | IBM 1401 |
| Third | 1960s–1970s | Integrated Circuit (IC) | IBM System/360 |
| Fourth | 1970s–present | Microprocessor | IBM PC, modern laptops |
| Fifth | Present–future | Artificial intelligence, parallel processing | AI 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
| Component | Role | Common Example |
|---|---|---|
| CPU | Processes instructions | Intel Core i3, AMD Ryzen |
| RAM | Temporary working memory | 4 GB, 8 GB DDR4 |
| ROM | Permanent boot instructions | BIOS / UEFI chip |
| HDD / SSD | Long-term storage | 500 GB HDD, 256 GB SSD |
| Motherboard | Connects 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:
| Level | Type | Speed | Typical Size |
|---|---|---|---|
| 1 | Registers | Fastest | Bytes |
| 2 | Cache (L1 / L2 / L3) | Very fast | KB – MB |
| 3 | RAM | Fast | GB |
| 4 | ROM | Constant | MB |
| 5 | HDD / SSD | Slow | TB |
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
| Term | Expansion / meaning |
|---|---|
| CPU | Central Processing Unit — the "brain"; contains the ALU, control unit and registers |
| ALU | Arithmetic Logic Unit |
| RAM / ROM | Random Access Memory (volatile) / Read-Only Memory (non-volatile) |
| PROM / EPROM / EEPROM | Programmable / Erasable Programmable / Electrically Erasable Programmable ROM |
| BIOS / UEFI | Basic Input Output System — the firmware that boots the machine |
| USB | Universal Serial Bus |
| HDMI / VGA | Display connections — digital / analogue |
| SMPS | Switched Mode Power Supply |
| UPS | Uninterruptible Power Supply — essential in a rural office with unreliable power |
| HDD / SSD | Hard Disk Drive (magnetic, moving parts) / Solid State Drive (flash, faster, no moving parts) |
| GPU | Graphics Processing Unit |
| DPI / PPI | Dots per inch / pixels per inch — scanner and display resolution |
| MICR | Magnetic Ink Character Recognition — used on cheques |
| OMR | Optical Mark Recognition — reads the shaded bubbles on an answer sheet |
| OCR | Optical Character Recognition — converts a scanned image of text into editable characters |
| BCR / QR | Bar 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
| System | Base | Digits | Use |
|---|---|---|---|
| Binary | 2 | 0, 1 | The machine's own representation — circuits have two stable states |
| Octal | 8 | 0–7 | Compact shorthand for binary |
| Decimal | 10 | 0–9 | Human counting |
| Hexadecimal | 16 | 0–9, A–F | Memory 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.
Which electronic component defines the first generation of computers?
How many bits are there in one byte?
Which technology, used to read the VAO exam answer sheets, is also an input device category?
What is the essential difference between OMR and OCR, and which is used to evaluate the VAO answer sheet?
Convert the decimal number 25 to binary.