By the end of this chapter you'll be able to…

  • 1Recall the five computer generations with their defining technology (vacuum tubes → transistors → ICs → microprocessors → AI)
  • 2Name the CPU's three parts (ALU, CU, registers) and what each does in the fetch–decode–execute cycle
  • 3Order the memory hierarchy and classify each level: volatile vs non-volatile, SRAM vs DRAM, the PROM/EPROM/EEPROM family
  • 4Convert storage units on the 1024 ladder from bits and nibbles up to TB
  • 5Classify any device as input, output or both, including MICR/OMR/OCR and plotters
  • 6Distinguish system from application software and compilers from interpreters, and convert small numbers between decimal and binary
💡
Why this chapter matters in SSC CGL
The Computer Knowledge module is qualifying: its marks don't add to merit, but scoring below the cutoff disqualifies your entire attempt — the 390 merit marks you earned elsewhere evaporate. The material is school-level recall (full forms, memory types, unit ladders), so the only failure mode is walking in unrevised. Two focused reads of this chapter effectively insure your whole result.

Computer Basics and Hardware — SSC CGL Computer Knowledge

The Computer Knowledge module is qualifying — its 60 marks don't count toward merit, but failing it voids everything else. The questions are deliberately basic: what does ALU stand for, which memory is volatile, how many MB in a GB. This chapter is the fact sheet; read it twice and the module is safe.


1. What SSC actually asks

Tier 2, Section III, Module I: ~10–13 of the 20 questions come from basics and hardware (the rest from MS Office, internet and security). Three marks each, −1 negative, qualifying threshold kept low. Question style is pure recall: full forms, "which of these is volatile", "brain of the computer", unit conversions.


2. Generations of computers

GenerationPeriodTechnologyLandmark machines
1st1940s–50sVacuum tubesENIAC, UNIVAC
2nd1950s–60sTransistorsIBM 1401
3rd1960s–70sIntegrated Circuits (ICs)IBM 360
4th1970s–Microprocessors (VLSI)Intel 4004 onward
5thpresent/futureAI & parallel processing
  • Charles Babbage — "father of the computer" (Analytical Engine); Ada Lovelace — first programmer.
  • India's fastest supercomputers are the PARAM and AIRAWAT families (C-DAC).

3. Inside the CPU

The CPU ("brain of the computer") has three parts:

  • ALU — Arithmetic Logic Unit: all calculations and comparisons.
  • CU — Control Unit: directs the fetch–decode–execute cycle; issues signals, does no math.
  • Registers — tiny, fastest storage inside the CPU (accumulator, program counter).

Almost all machines follow von Neumann architecture: program and data share one memory, instructions execute via the fetch–decode–execute cycle. CPU speed is quoted in GHz (clock cycles per second); "dual/quad/octa core" = number of processing units on one chip.


4. The memory hierarchy

Fastest and smallest at the top:

  1. Registers (inside CPU)
  2. Cache (SRAM — between CPU and RAM; L1/L2/L3)
  3. Primary memory:
    • RAM — volatile, read/write. DRAM (main memory, needs refresh) vs SRAM (cache, faster, costlier).
    • ROM — non-volatile, holds firmware/BIOS. Family: PROM (programmable once), EPROM (erase by UV light), EEPROM (erase electrically — flash memory's ancestor).
  4. Secondary storage — non-volatile, large: HDD (magnetic), SSD (flash, no moving parts), optical discs (CD ~700 MB, DVD ~4.7 GB, Blu-ray ~25 GB), pen drives.

The volatility question is guaranteed: RAM loses data on power-off (volatile); ROM, HDD, SSD do not. And cache sits between the CPU and main memory — not on the hard disk.


5. Storage units — the ladder

SSC uses the binary convention (1024, not 1000). One character of text ≈ 1 byte.


6. Devices and ports

InputOutputBoth
Keyboard, mouse, scanner, MICR/OMR/OCR readers, barcode reader, joystick, light pen, webcam, microphoneMonitor, printer, plotter, speakers, projectorTouchscreen, modem, external drives
  • MICR — cheques (Magnetic Ink Character Recognition); OMR — exam bubble sheets; OCR — printed text to editable text.
  • Printers: impact (dot-matrix) vs non-impact (inkjet, laser); plotters draw large engineering drawings.
  • Ports: USB (universal, hot-pluggable), HDMI (audio + video), VGA (older, video only), Ethernet/RJ-45 (network).

7. Software and languages

  • System software runs the machine: OS (Windows, Linux, Android), device drivers, utilities.
  • Application software serves the user: MS Word, browsers, Tally.
  • Compiler translates a whole high-level program to machine code at once (C, C++); an interpreter translates line-by-line (Python, older BASIC).
  • Machine language = binary (the only language the CPU executes); assembly uses mnemonics and needs an assembler.

Binary conversion (one method, both directions): decimal → binary by repeated division by 2 reading remainders bottom-up: (check: ). Binary → decimal by positional weights .


8. Exam protocol

  1. This module is qualifying — target accuracy, not heroics. 15 clean answers beat 20 rushed ones at −1 each.
  2. Full forms are free marks: ALU, CU, RAM/ROM, PROM/EPROM/EEPROM, MICR/OMR/OCR, USB, HDMI.
  3. For unit conversions, write the 1024 ladder in the margin once and read answers off it.
  4. Device-classification questions: ask "does data go into the computer or out?" — plotter out, scanner in, touchscreen both.
  5. Revise this fact sheet in the last 48 hours; recall decays fast and the module rewards freshness.

Key formulas & results

Everything to memorise for the exam hall, in one card. Screenshot this for revision.

Storage ladder
SSC uses the binary (1024) convention. 4 bits = 1 nibble.
CPU composition
The CU does no arithmetic; the ALU does no controlling — the exam tests exactly this split.
Memory hierarchy
Speed and cost fall, capacity rises as you descend. Cache sits between CPU and main memory.
Decimal → binary
Check by positional weights: 16 + 8 + 0 + 0 + 1 = 25.
⚠️

Traps SSC CGL sets — and how to dodge them

These are the exact option-traps and misreads that cost marks under negative marking.

WATCH OUT
Marking ROM as volatile or RAM as permanent.
Volatile = loses data on power-off = RAM (both SRAM and DRAM). ROM, HDD, SSD, optical discs are non-volatile. The volatility question appears in nearly every paper.
WATCH OUT
Placing cache memory on the hard disk or 'between RAM and hard disk'.
Cache (SRAM) sits between the CPU and main memory, holding recently used data. Registers are faster still, inside the CPU itself.
WATCH OUT
Crediting the Control Unit with calculations.
The ALU computes; the CU only directs traffic (fetch–decode–execute signals). 'Which unit performs arithmetic?' → ALU, always.
WATCH OUT
Using the 1000 (decimal) convention for storage units.
SSC keys use 1024: 1 GB = 1024 MB. Disk manufacturers use 1000, which is why the trap options exist.
WATCH OUT
Classifying the plotter as an input device or the scanner as output.
Ask which way the data flows: plotter draws computer data onto paper (output); scanner turns paper into computer data (input); touchscreen does both.
WATCH OUT
Swapping EPROM and EEPROM erasure methods.
EPROM = UV light erases; EEPROM = electricity erases (the extra E = Electrically). Flash memory descends from EEPROM.

Exam-pattern practice

PYQ-style questions with full solutions. Work through them as a readiness check — mark yourself honestly and get your gap report at the end.

Readiness check

Are you exam-ready for Computer Basics and Hardware?

11 problems from this chapter. Try each one, reveal the worked solution, mark yourself honestly — get your gap report at the end.

11 questions~8 min

5-minute revision

The whole chapter, distilled. Read this the night before the exam.

  • Generations: vacuum tubes → transistors → ICs → microprocessors → AI; ENIAC is 1st-gen; Babbage = father, Lovelace = first programmer
  • CPU = ALU (computes) + CU (directs, no math) + registers (fastest storage); von Neumann = shared program/data memory
  • Volatile = RAM only; ROM/HDD/SSD/optical are non-volatile
  • Cache = SRAM between CPU and main memory; main RAM = DRAM (needs refresh)
  • ROM family: PROM once, EPROM UV-erased, EEPROM electrically erased (→ flash)
  • Ladder: 4 bits = nibble, 8 = byte, then ×1024: KB → MB → GB → TB → PB
  • Input: keyboard, scanner, MICR/OMR/OCR, barcode; Output: monitor, printer, plotter, projector; Both: touchscreen, modem
  • MICR cheques, OMR bubble sheets, OCR printed text; laser = non-impact printer, dot-matrix = impact
  • System software (OS, drivers) vs application (Word, browser); compiler = whole program, interpreter = line-by-line
  • Decimal→binary: divide by 2, remainders bottom-up (25 = 11001)

SSC CGL question blueprint

How this topic is asked, tier by tier — so you can prep to the pattern.

Typical weightage: 39

Question styleMarks eachTypical countWhat it tests
Basics & hardware share of the 20-Q module30–39 (10–13 Q × 3 marks, qualifying)
Prep strategy
  • Two full reads of the fact sheet: one now, one in the final 48 hours
  • Flashcards for full forms and the ROM family
  • One 20-question timed mock of the whole module to calibrate the qualifying bar
  • Pair with the MS Office & Windows chapter — together they cover most of the module

Exam-hall strategy

Battle-tested tips from mentors and toppers for this topic under the sectional clock.

  1. Play for accuracy, not score — the module is qualifying, and −1 negatives punish guessing.
  2. Bank the guaranteed questions first: full forms, volatility, unit ladder, device classification.
  3. Write the 1024 ladder in the rough sheet at the start; read all conversion answers off it.
  4. For device questions, trace the data direction: into the computer = input, out = output, both ways = both.
  5. Schedule the second read of this chapter within 48 hours of the Tier 2 date.

Beyond the exam

Where this skill shows up in the job you're competing for — and in life.

The DEST test

Right after this module, the same exam session runs the Data Entry Speed Test on an actual computer — comfort with the machine you just answered questions about is not optional.

Government office IT

CGL posts run on desktops, printers, scanners and networked systems daily; the clerk who understands 'why is this file 2 GB' or 'why did unsaved work vanish' (volatile RAM!) works faster.

Buying decisions

SSD vs HDD, RAM size, processor cores — this chapter is exactly the vocabulary of every laptop purchase.

Where else this topic is tested

Prepare once, score in every exam that asks it.

SSC CHSLSame module style in Tier 2
IBPS PO / ClerkComputer aptitude section — same facts plus shortcuts
RRB NTPC3–5 computer questions inside GA
State PSC clerical examsStandard computer-awareness paper

Questions aspirants ask

Pulled from the Q&A community and mentor sessions.

No — it is qualifying only. But failing to reach its cutoff disqualifies you regardless of your other scores, so it protects (rather than adds to) your 390 merit marks.

School-level recall: full forms, volatile vs non-volatile, unit conversions, device classification. There are no programming or numerical questions. The module punishes only the unprepared.

Roughly 10–13 questions historically come from basics and hardware. The companions — MS Office & Windows, internet & networking, and cyber security — cover the rest.

Yes, −1 per wrong answer (questions carry 3 marks). Since you only need to qualify, favour accuracy: 15 sure answers comfortably clear the threshold.

Once now for familiarity, once in the final 48 hours before Tier 2. Pure-recall content decays quickly, and the module rewards freshness more than depth.
Header Logo