Computers & Information Technology for SSC CGL GK

beginner 18 min read

Concept

Think of a computer as a very disciplined office. There is a boss — the CPU (Central Processing Unit) — who gives all the orders. There is a desk where active work happens — that is RAM (Random Access Memory). There is a filing cabinet where permanent records are stored — that is your hard disk or ROM (Read Only Memory). Messengers carry files between departments — those are the interfaces and ports. And the rulebook that tells everyone how to behave is the Operating System.

This analogy does real work. Every SSC CGL question on computers is essentially asking you about one part of this office ecosystem — who stores what, who connects to whom, and who talks which language.

Here is why this chapter matters in GK: it is not a conceptual deep-dive like Physics or Chemistry. Every question has a single correct factual answer, and the answer almost never requires calculation. You either know it or you eliminate your way to it. That makes Computer Awareness one of the most score-able areas in SSC CGL GK — provided you have the right mental map.

The chapter covers three broad zones:

Hardware — the physical components: CPU, memory (RAM, ROM, Cache), storage devices, input/output devices, and how they connect via ports and interfaces.

Software and OS — the programs that run on hardware: system software (OS like Windows, Linux), application software (MS Office, browsers), and the underlying concepts of memory management, multitasking, and multiprogramming.

Networking and Internet — how computers talk to each other: LAN, WAN, MAN, protocols, modems, routers, and e-services like e-banking and e-commerce.

The binary system — the language of all digital circuits (0s and 1s) — sits across all three zones because it is the foundational grammar of computing.

Keep this office analogy in your head. When a question asks about "permanent storage," you are looking for the filing cabinet (ROM/HDD). When it asks about "volatile memory," you are looking for the desk that gets cleared when the office shuts (RAM). That lens alone resolves half the memory-type questions.


Deep Dive

Memory Hierarchy — the most-tested hardware concept

Memory in a computer is organised in a hierarchy based on speed and permanence. From fastest to slowest:

Cache Memory → RAM → ROM/HDD

Cache Memory is ultra-fast, sits closest to the CPU, and holds data the CPU is actively using right now. It is volatile (data disappears on power-off) and very small in size.

RAM (Random Access Memory) is the working memory — volatile, meaning everything disappears when the machine is switched off. When you open a Word document, it loads from the hard disk into RAM because RAM is faster to read from. RAM is further classified into SRAM (Static RAM, faster, used in cache) and DRAM (Dynamic RAM, slower, used as main memory).

ROM (Read Only Memory) is non-volatile — it retains data even after power-off. It contains the BIOS/firmware that boots the computer. You cannot write to it during normal operation. This is what the 2017 PYQ is testing: permanent storage = ROM.

HDD/SSD are secondary storage devices — non-volatile, large capacity, used for permanent file storage.

The trap most CGL aspirants fall into: confusing "permanent" with "large." Cache is not permanent. RAM is not permanent. Only ROM and secondary storage (HDD/SSD) are non-volatile.

Memory Management vs. Multitasking vs. Multiprogramming

These three terms look similar but mean different things:

Memory Management — the OS function of allocating, tracking, and reclaiming memory space for running programs. When you run multiple apps, the OS decides which program gets how much RAM and when it gets released. This is exactly what the 2015 PYQ defines.

Multiprogramming — keeping multiple programs loaded in memory simultaneously so the CPU can switch to another when one is waiting (for I/O, for example). The goal is to keep the CPU busy. One CPU, many programs.

Multitasking — the user-facing version of the same idea: you can have a browser, a music player, and a spreadsheet running at the same time. Modern OS achieves this through rapid context-switching, giving the illusion of simultaneous execution.

Multiprocessing — actually using multiple CPUs to run processes in parallel. Genuinely simultaneous, not just an illusion.

Exam logic: if a question says "rearranging and allocating space in memory," the answer is Memory Management, not Multitasking or Multiprogramming. Multitasking is about tasks running simultaneously; Memory Management is specifically about the allocation of memory space.

Networking — LAN, WAN, MAN, and the Modem question

LAN (Local Area Network) — confined to a building or campus. Uses network interface cards (NIC), cables (Ethernet), and switches/hubs. Key point: LANs do NOT require modems. A modem (Modulator-Demodulator) converts digital signals to analog for transmission over telephone lines — that is a WAN function, not a LAN function.

WAN (Wide Area Network) — spans cities, countries. Uses modems, leased lines, and routers. The internet is the largest WAN.

MAN (Metropolitan Area Network) — city-scale, between LAN and WAN.

The 2012 PYQ directly exploits this: modems belong to WAN, not LAN.

Binary System — digital circuit language

All digital circuits — transistors, logic gates, microprocessors — operate in binary (base-2). The two states map to:

Hexadecimal (base-16) is used by programmers as a shorthand for binary (4 binary digits = 1 hex digit), but the underlying hardware still speaks binary. The 2013 PYQ makes this distinction: digital circuits recognise the binary system, not hexadecimal directly.

CPU to Peripheral: Interfaces and Ports

Data travels from the CPU to peripherals (printer, monitor, keyboard) through interfaces — standardized connection mechanisms that manage communication protocols between devices. Common interfaces: USB, HDMI, VGA, SATA, PS/2.

Ports are the physical sockets where cables plug in. Interfaces is the broader term covering both hardware and protocol aspects of that connection. The 2012 PYQ answer is "interfaces" specifically because the question mentions "data transfer achieved through" — which points to the protocol-and-hardware combination, not just the physical socket.

e-Banking and e-Services

The "e" prefix universally stands for Electronic — enabled through electronic means, primarily the internet. e-Banking = Electronic Banking. e-Commerce = Electronic Commerce. e-Governance = Electronic Governance.

Historical Milestones (frequently tested)


Memory Tricks & Shortcuts

patternRAM = Table, ROM = Safe

RAM is your work table — everything on it disappears when you go home (power off). ROM is your safe — locked, permanent, survives power cuts. When a question says "permanent" or "non-volatile," go to ROM. When it says "temporary" or "volatile," go to RAM. This single pattern resolves 60% of memory-type questions without reading all four options. Standard approach (reading all options): ~20s. This pattern (keyword scan): ~6s.

eliminationModem = Telephone Cousin (not LAN)

Modem = MOdulator + DEModulator = converts digital to analog for telephone lines. Telephone lines = long distance = WAN. LAN is local, uses cables and NICs, needs no phone line conversion. Whenever a question lists modem alongside LAN equipment, modem is the odd one out. Eliminates the wrong answer in 1 step instead of reasoning through all four options (~8s saved per question).

patternThe 3M Disambiguation: MM, MP, MT

Three terms, three distinct triggers:

  • Memory Management → memory allocation keyword
  • Multiprogramming → CPU utilisation, one CPU many programs
  • Multitasking → user perspective, multiple apps visible at once

If the question says "allocating space in memory," it is Memory Management, full stop. Don't be distracted by Multitasking — that is about tasks, not space allocation. Reduces deliberation time from ~25s to ~8s.

patternBinary = Circuit Language, Hex = Programmer Shorthand

Digital circuits speak binary — they have two physical states (on/off). Hexadecimal is a human-friendly shorthand layered on top. So: "what does hardware/digital circuit understand?" → Binary. "What do programmers use to represent binary compactly?" → Hex. This distinction resolves all binary vs. hex questions in under 5 seconds versus ~20 seconds of reasoning from scratch.

eliminatione-Prefix = Electronic, Always

For any e-[word] question (e-banking, e-commerce, e-governance, e-mail), the correct expansion of "e" is always Electronic. Options may try Economic, Essential, or Expansion to confuse. Eliminate all non-Electronic options immediately. 1-second answer, no deliberation needed.


Fast-Solving Framework

When you see a Computer Awareness question in the GK section, run this mental decision tree:

Step 1 — Categorise the question. Is it about (a) memory/storage, (b) networking, (c) software/OS, (d) history/inventor, or (e) e-services?

Step 2 — Apply the category filter:

Step 3 — Eliminate before confirming. Even if you know the answer, glance at options for traps — especially options that sound technical (like ALU or Cache for a "permanent storage" question).

Step 4 — Do not overthink. Computer GK questions at CGL level are factual, not conceptual. If you find yourself constructing a long logical argument, you have likely misread the question. Re-read, apply the category filter, move on.

Target: under 30 seconds per Computer GK question. Most should fall in 10-15 seconds with this framework.


Solved PYQs

Why this question — This is the most fundamental memory classification question. It tests whether you conflate "fast" with "permanent."

Previous Year Questionपिछले वर्ष का प्रश्न2017
Which of the following stores data permanently in a computer?
  1. Cache Memory
  2. ROM
  3. ALU
  4. RAM
Solutionसमाधान
ROM (Read Only Memory) stores data permanently; it retains its contents even when the computer is turned off, unlike RAM which is volatile.

Solving path — Keyword is "permanently." Cache is volatile. ALU is not memory at all (it is the arithmetic unit). RAM is volatile. ROM is non-volatile — it retains data after power-off. Answer: ROM. Time taken with the RAM=Table/ROM=Safe trick: ~8 seconds.


Why this question — The 3M disambiguation is critical here. Multiprogramming and Multitasking are legitimate distractors that many aspirants cannot cleanly separate from Memory Management.

Previous Year Questionपिछले वर्ष का प्रश्न2015
Rearranging and allocating space in memory to provide for multiple computing tasks is called
  1. Multiprogramming
  2. Memory Management
  3. Networking
  4. Multitasking
Solutionसमाधान
Memory Management is the process of controlling and coordinating computer memory, including allocation and deallocation of memory spaces to programs, enabling multiple computing tasks.

Solving path — The phrase "rearranging and allocating space in memory" is the definitive signal for Memory Management. Multiprogramming is about keeping the CPU busy. Multitasking is about multiple concurrent tasks from the user's view. Networking is completely irrelevant. Answer: Memory Management.


Why this question — Historical inventor questions appear regularly. Epson vs. Microsoft vs. HP is a genuine knowledge test — no shortcut, pure recall.

Previous Year Questionपिछले वर्ष का प्रश्न2014
Who among the following introduced the world's first laptop computer in the market?
  1. Laplink travelling software Inc
  2. Epson
  3. Microsoft
  4. Hewlett-Packard
Solutionसमाधान
Epson introduced the world's first laptop computer, the Epson HX-20, in the early 1980s.

Solving path — Microsoft is a software company — it does not manufacture hardware. HP did make early portables but was not first. Laplink is software. Epson HX-20 (early 1980s) is the established answer for world's first laptop. Answer: Epson.


Why this question — Tests the modem-LAN incompatibility, which is a classic trap because modems sound like networking equipment.

Previous Year Questionपिछले वर्ष का प्रश्न2012
Which of the following items is not used in Local Area Networks (LANs)?
  1. Cable
  2. Modem
  3. Computer
  4. Interface Card
Solutionसमाधान
Modems are used for wide area network connections (WAN) over telephone lines. LANs use network interface cards, cables, and computers but do not require modems for local connectivity.

Solving path — LAN components: Cable (yes — Ethernet cable), Computer (yes — endpoints), Interface Card (yes — NIC connects the computer to the LAN). Modem (no — converts digital to analog for telephone/WAN use, not needed in a local network). Answer: Modem.


Why this question — Tests the binary vs. hexadecimal distinction at the hardware level. The "both" option (B) is a deliberate trap.

Previous Year Questionपिछले वर्ष का प्रश्न2013
What type of information system would be recognised by digital circuits?
  1. Only Roman system
  2. Both hexadecimal and binary system
  3. Binary system
  4. Hexadecimal system
Solutionसमाधान
Digital circuits operate on binary (base-2) system using only 0s and 1s, which correspond to the two states (off/on) of electronic switches.

Solving path — Digital circuits have two states: on and off. That is binary (0 and 1). Hexadecimal is a higher-level representation used by programmers; circuits do not "speak" hex — they speak binary. Option B ("both") is wrong because the underlying hardware only processes binary. Answer: Binary system.


Common Mistakes


Related Topics

Practice on SarkariRise

Sign up + get 3 free mocks →