SSC CGL · Computer Knowledge
Computer Fundamentals
Definition, working principle, types and generations of computers.
Seven concepts. Banking and SSC computer awareness almost never asks you to compute here — it asks you to place a machine in a generation, a size class, or a signal type, and to know the IPO cycle and the binary storage ladder by heart. Each concept is a table or a short procedure, not a ledger.
- SSC CGL
- Easy level
- 6 concepts
- 40 practice questions
1The IPO cycle, and where the CPU sits
A computer does useful work by taking data in, transforming it, and sending results out. That path is the Input → Process → Output cycle. Storage is not a fourth stage that replaces those three; it supports each of them — holding the input, the working data, and the finished output until they are needed again.
The processing unit that carries out the Process stage is the CPU. When a question asks what a computer fundamentally does, the honest answer is this cycle, not a brand name or a generation label.
Figure. Input feeds Process; Process feeds Output. Storage is support under every stage — not a fourth IPO stage.
One pass through the machine
- InputData or a command enters through a keyboard, mouse, scanner, sensor, or another input device.
- ProcessThe CPU executes instructions on that data — the only stage that transforms it.
- OutputResults leave through a display, printer, speaker, or network — and may also be written back to storage.
| Stage | What happens | Typical hardware |
|---|---|---|
| Input | Data enters the system | Keyboard, mouse, scanner, mic |
| Process | Instructions transform the data | CPU |
| Output | Results leave the system | Monitor, printer, speaker |
| Storage (support) | Holds data for later stages | RAM, SSD, HDD, cloud drive |
A railway booking kiosk reads a passenger's Aadhaar, looks up the seat chart, and prints a ticket. Which statement places the CPU correctly in that IPO pass?
- The CPU is the output device, because the ticket is the finished result
- The CPU performs the Process stage that turns the lookup request into a confirmed booking
- The CPU is a fourth IPO stage that sits after Output and before Storage
Reading Aadhaar is Input; printing the ticket is Output; looking up and confirming the seat is Process, which is the CPU's job. Storage may hold the chart, but it does not replace Process, and the CPU is not itself an output device.
2Five generations by the hardware that defined them
Exam questions that say "generation" are almost always asking which switching technology built the machine, not which year it shipped. The ladder is fixed: vacuum tubes, then transistors, then integrated circuits (ICs), then microprocessors (VLSI), then AI / ULSI systems.
A memory aid that matches the ladder is "Take This IC Micro AI" — Tubes, Transistors, IC, Microprocessor, AI — for generations 1 through 5. The third-generation marker is the IC: once the question names integrated circuits, the generation is three.
Figure. Generation rank follows switching hardware: tubes, transistors, ICs, microprocessors, then AI/ULSI. IC marks generation 3.
| Generation | Defining hardware | Exam cue |
|---|---|---|
| 1st | Vacuum tubes | Bulky, hot, tube-based |
| 2nd | Transistors | Smaller than tubes; discrete transistors |
| 3rd | Integrated circuits (ICs) | Many components on one chip |
| 4th | Microprocessors (VLSI) | CPU on a single chip |
| 5th | AI / ULSI | Parallel / AI-oriented systems |
A museum plaque says a 1970s office computer put many logic gates on a single silicon chip and no longer wired discrete transistors for each gate. Which generation does that description fix?
- Second, because transistors had already replaced tubes
- Third, because integrated circuits are the defining hardware
- Fourth, because any silicon chip means a microprocessor
Many gates on one chip is an IC — third generation. Second generation still uses discrete transistors. Fourth generation requires a microprocessor (VLSI), not merely "some silicon".
3Analog, digital and hybrid by the kind of data
When a question sorts computers by the data they handle, the cut is continuous versus discrete. An analog computer works on continuous signals — a smoothly varying voltage or a needle that never jumps. A digital computer works on discrete binary data, only 0s and 1s. A hybrid computer combines both, which is why hospitals and ICUs still use hybrid machines for monitoring that mixes continuous sensors with digital processing.
The classroom contrast that sticks is "analog is continuous, digital is discrete" — a mercury thermometer's rising column versus a digital display that flips from one digit to the next.
Figure. Classify by signal kind: continuous analog, discrete digital, or hybrid that mixes both.
| Type | Data form | Typical use cue |
|---|---|---|
| Analog | Continuous signals | Needle gauges, continuous measurement |
| Digital | Discrete binary (0/1) | PCs, phones, most modern machines |
| Hybrid | Continuous plus discrete | Hospital / ICU monitoring systems |
An ICU bedside unit continuously tracks a patient's blood pressure as a varying waveform and also runs digital alarms when a threshold is crossed. How should that machine be classed by data type?
- Analog only, because the waveform is continuous
- Digital only, because alarms are binary on/off decisions
- Hybrid, because it combines continuous sensing with discrete processing
Continuous waveform plus digital threshold logic is exactly the hybrid pattern the notes flag for hospitals and ICUs. Analog-only would stop at the waveform; digital-only would not treat the continuous signal as its native form.
4Size classes from supercomputer down to PC
A second common sort is by size and processing power. In decreasing order the ladder is Supercomputer, Mainframe, Minicomputer, Microcomputer (the ordinary PC). Questions that name a weather-model machine or a national research centre are pointing at the top; questions that name a desktop or laptop are pointing at the bottom.
Do not confuse this ladder with the generation ladder. A modern microcomputer is fourth- or fifth-generation hardware; "micro" here means personal scale, not "microprocessor generation".
Figure. Size class shrinks down the ladder: supercomputer, mainframe, mini/server, then micro/PC.
| Type | Relative power | Everyday cue |
|---|---|---|
| Supercomputer | Highest | Weather, research, national labs |
| Mainframe | Very high | Large organisation central systems |
| Minicomputer | Mid | Department / mid-scale servers (legacy exam term) |
| Microcomputer (PC) | Lowest of the four | Desktop, laptop, personal use |
A district office runs payroll for a few hundred staff on a single shared departmental machine, while clerks at home use ordinary laptops. Relative to each other on the size ladder, how do those two machines sit?
- The departmental machine is a microcomputer; the laptops are minicomputers
- The departmental machine sits above the microcomputer class; the laptops are microcomputers
- Both are supercomputers because they process binary data
Personal laptops are microcomputers. A shared departmental machine is the classic exam cue for minicomputer (or at least above PC scale). Binary data does not make a machine a supercomputer — that label is about power and scale.
5Bits, bytes and the binary storage ladder
The smallest unit of data is the bit, which stores a single 0 or 1. Eight bits make one byte. Four bits make a nibble — half a byte — a unit that appears in abbreviation and conversion questions more than in daily talk.
Classic computing storage steps up by powers of 2^{10} = 1024: 1 KB = 1024 B, 1 MB = 1024 KB, 1 GB = 1024 MB, 1 TB = 1024 GB. The exam trap is treating each step as a decimal thousand; when a paper says "binary units" or just assumes the older ladder, multiply by 1024 at each step.
Figure. Each step is x1024 after the bit-to-byte jump (8 bits = 1 byte). Log bars show the decade gaps exams expect.
| Unit | Equals | In bits (where useful) |
|---|---|---|
| Bit | Smallest unit (0 or 1) | 1 bit |
| Nibble | 4 bits | Half a byte |
| Byte | 8 bits | 8 bits |
| KB | 1024 bytes | — |
| MB | 1024 KB | — |
| GB | 1024 MB | — |
| TB | 1024 GB | — |
A download meter shows 2 MB transferred, and the question states binary units. How many kilobytes is that?
- 2000 KB, using the decimal thousand
- 2048 KB, because 1 MB = 1024 KB
- 16 KB, because 2 × 8 bits
Under the binary ladder in the notes, 1 MB = 1024 KB, so 2 MB = 2048 KB. 2000 KB is the SI-style thousand; 16 confuses bytes-with-bits arithmetic with the MB→KB step.
6Clock speed in hertz
A processor's clock speed counts how many cycles it can run per second, and the unit is the hertz (Hz). Higher clock speed generally means faster processing, all else equal — the hedge matters, because architecture and cores also decide throughput, but exam MCQs treat the headline link as "higher GHz → faster".
The conversion worth memorising is 1\ \mathrm{GHz} = 10^{9} cycles per second. Prefix questions that bounce between MHz and GHz are testing that power-of-ten scale, not a hidden formula.
Figure. Clock speed counts cycles per second. kHz, MHz and GHz are thousand-fold steps on the hertz ladder.
| Unit | Cycles per second | Exam use |
|---|---|---|
| Hz | 1 | Base unit of clock rate |
| MHz | 10^{6} | Older CPU ratings |
| GHz | 10^{9} | Modern CPU ratings |
Two otherwise identical catalogue CPUs are rated 2.5 GHz and 3.0 GHz. What does the higher rating claim, in the sense banking and SSC papers use?
- More bits in each byte
- More clock cycles per second, so generally faster processing
- A jump from fourth to fifth generation
Clock speed is cycles per second; a higher GHz rating means more cycles per second and is read as generally faster. Byte width and generation labels are different axes.
Notes
- IPO cycle: A computer works on the Input -> Process -> Output cycle, with storage supporting each stage; the CPU is the processing unit.
- Generations: 1st = vacuum tubes, 2nd = transistors, 3rd = integrated circuits (ICs), 4th = microprocessors (VLSI), 5th = AI/ULSI.
- Types by data: Analog handles continuous signals, Digital handles discrete binary data, and Hybrid combines both (used in hospitals/ICUs).
- Types by size: Supercomputer > Mainframe > Minicomputer > Microcomputer (PC), in decreasing order of processing power.
- Charles Babbage is the 'Father of the Computer' for designing the Analytical Engine; a computer's speed is measured in Hertz (clock cycles per second).
Formulas
- 1 Byte = 8 bits; a bit is the smallest unit and stores a 0 or 1.
- Storage ladder: 1 KB = 1024 B, 1 MB = 1024 KB, 1 GB = 1024 MB, 1 TB = 1024 GB (powers of 2^10).
- Nibble = 4 bits = half a byte.
- Generation memory aid: Tubes -> Transistors -> ICs -> Microprocessors -> AI (1 to 5).
- Clock speed: 1 GHz = 10^9 cycles per second; higher clock speed generally means faster processing.
Exam traps & shortcuts
- Remember generation hardware with 'Take This IC Micro AI' (Tubes, Transistors, IC, Microprocessor, AI).
- ENIAC was the first general-purpose electronic computer; UNIVAC was the first commercial computer.
- 'Analog is continuous, Digital is discrete' — thermometer needle vs digital display.
Reference tables
The same facts as the concept tables, gathered for revision: generation hardware, size order, signal type, and the binary storage step.
| Topic | Hold this |
|---|---|
| IPO | Input → Process → Output; CPU processes; storage supports |
| Generations 1–5 | Tubes → Transistors → ICs → Microprocessors → AI |
| By signal | Analog continuous; Digital discrete; Hybrid both (ICU cue) |
| By size | Super > Mainframe > Mini > Micro (PC) |
| Storage step | ×1024 each rung; 1 byte = 8 bits; nibble = 4 bits |
| Firsts | Babbage / Analytical Engine; ENIAC electronic; UNIVAC commercial |
| Clock | Hz = cycles/s; 1 GHz = 10^9 Hz |
Recap
If you keep only pegs, keep these.
- IPO
- Input → Process → Output; CPU does Process; storage supports every stage
- Generations
- Tubes → Transistors → ICs → Microprocessors → AI ("Take This IC Micro AI")
- IC cue
- Integrated circuits = 3rd generation
- Signal types
- Analog continuous; Digital discrete binary; Hybrid both (hospital/ICU)
- Size order
- Supercomputer > Mainframe > Minicomputer > Microcomputer (PC)
- Bit / byte
- 1 bit = 0 or 1; 1 byte = 8 bits; 1 nibble = 4 bits
- Binary ladder
- KB/MB/GB/TB each ×1024 (not ×1000) in classic exam units
- Babbage
- Father of the Computer — Analytical Engine
- ENIAC / UNIVAC
- ENIAC = first general-purpose electronic; UNIVAC = first commercial
- Clock
- Speed in hertz; 1 GHz = 10^9 cycles per second
Practise Computer Fundamentals
Reading is free and needs no account. Practice, mocks and progress live in the app.
- 40 exam-style questions on this topic, with explanations
- A 5-question practice set that ends the chapter
- Timed mocks scored with the real marking scheme
- Readiness tracked per topic, kept on your device