Computer Knowledge in SSC CGL is not about deep programming or engineering — it is about recognising correct definitions and spotting the one option that is precisely accurate among three plausible-sounding distractors. Think of it as a vocabulary test where the words happen to be technical.
The subject covers five broad clusters:
Here is the analogy that makes the memory hierarchy click instantly. Picture a chef in a restaurant kitchen:
This hierarchy — registers > cache > RAM > HDD — explains nearly every "speed vs. capacity" question you will face. Lock that image in place before reading further.
Computer knowledge questions in SSC CGL tend to be definition-retrieval, not problem-solving. You will rarely need to calculate anything. What you need is precision: the difference between "Memory Address Register" and "Main Address Register" is the entire question. One stray word kills the answer.
Registers sit inside the CPU itself. The MAR (Memory Address Register) specifically holds the address of the memory location the CPU wants to read from or write to. The MDR (Memory Data Register) holds the actual data being transferred. These are the fastest storage elements in the entire system, operating at CPU clock speed.
Cache Memory is positioned between the CPU and main memory (RAM). It stores copies of frequently accessed data so the CPU does not have to go all the way to RAM every time. Cache access time is measured in nanoseconds; RAM access is slower. There are typically three levels — L1 (smallest, fastest, inside the CPU core), L2, and L3.
RAM (Random Access Memory) is the working memory of the computer. The key characteristics:
Do not confuse RAM with ROM (Read-Only Memory), which is non-volatile and stores firmware like BIOS.
| Device | Type | Speed | Capacity | Use Case | |---|---|---|---|---| | HDD | Magnetic | Moderate | High | General storage | | SSD | Flash/Electronic | High | Medium-High | OS drives, fast access | | Tape Drive | Magnetic | Low (sequential) | Very High | Full system backups | | DVD-RW | Optical | Low | Low | Small backups, distribution | | NAS | Network-based | Moderate | Very High | Shared network storage |
Look — the question about backup devices almost always has tape drive as the correct answer when the context mentions "complete backups" and "lengthy restoration process". Tape drives are the standard for full-system archival backup in enterprise environments precisely because restoration is sequential and slow, but storage capacity is enormous and cost-per-byte is very low.
An Excel workbook is the file (.xlsx). A workbook contains one or more worksheets (tabs). A worksheet is a grid of rows and columns. The intersection of a row and a column is a cell. Each cell has a unique reference — column letter first, then row number (e.g., B3 = column B, row 3).
Do not confuse:
A firewall is a security mechanism — it can be hardware, software, or a combination — that monitors and controls incoming and outgoing network traffic based on a predetermined set of security rules. Its job is filtering: allow legitimate traffic, block suspicious or unauthorised traffic.
Firewalls are not:
When you send an email, several components work together:
When sender and receiver are on the same system, no MTAs are needed for routing — only two user agents are required: one for the sender to compose/send and one for the receiver to read.
GUI-based email user agents include Netscape (Messenger), Outlook, Thunderbird — they present a graphical interface with buttons, menus, and visual previews. Command-line / text-based agents include Elm, Pine, and Mail — these run in a terminal with no graphical interface. The PYQ asks specifically about GUI-based, and the answer is Netscape (not Elm, Pine, or Mail — those are all command-line tools).
| Abbreviation | Full Form | Function | |---|---|---| | MAR | Memory Address Register | Holds the address of the memory location being accessed | | MDR | Memory Data Register | Holds data being read from or written to memory | | PC | Program Counter | Holds address of the next instruction | | IR | Instruction Register | Holds the current instruction being decoded |
"Main Address Register" and "Memory Access Register" are distractors — neither is a standard term in computer architecture. The only correct expansion is Memory Address Register.
Remember the memory speed hierarchy from fastest to slowest using: Registers → Cache → System RAM → Hard disk → Remote (tape/network).
Micro-example: If a question asks "what sits between CPU and primary memory?", count down from the top — Registers are inside CPU, so the next step outward is Cache. Answer locked in under 5 seconds.
Standard approach (reading each option, eliminating): ~20s. Pattern recall: ~4s.
All types of RAM share one trait: Volatile = Vanishes when power goes. ROM = Retains (non-volatile). If an option says RAM "stores permanent data", eliminate it instantly — permanent is the opposite of RAM's defining feature.
This single rule eliminates at least one wrong option in every RAM-related question. Step count: 1 step (apply rule, eliminate) vs. 3-4 steps (read and analyse each option).
Remember: GUI agents have Graphics — Netscape, Outlook, Thunderbird all have visual windows you can see. Elm, Pine, Mail = text-only = EPM = "Every Programmer's Mail" (engineers who prefer terminal).
When the question says GUI-based, scan options for Netscape/Outlook/Thunderbird and pick it immediately. If those aren't present, the non-EPM option is your answer. Standard approach: read all four and reason through each (~25s). Elimination with EPM mnemonic: ~6s.
Whenever a backup question uses words like "complete backup", "system image", "lengthy restoration", or "large-scale archival" — the answer is tape drive. SSD is fast but expensive per GB. NAS is network-dependent. DVD-RW is too small for system images. Tape is the only option built for massive, sequential, archival backup.
Pattern recognition: 1 keyword scan → answer in ~5s vs. evaluating all four options (~30s).
Think of an Excel cell like a GPS coordinate: it is defined by the intersection of two lines (row + column), not as a "container" or "file". If any option uses the word "file" or "diagram" to describe a cell, eliminate it. Only the intersection definition is correct.
Substitution test: replace "cell" with "GPS point" — a GPS point is an intersection, not a file. This substitution confirms the correct option in under 3 seconds vs. evaluating worksheet/workbook confusion (~20s).
When you see a Computer Knowledge question in the exam hall, run this decision tree:
Step 1 — Identify the cluster. Is this about memory, storage, networking, MS Office, or email? Each cluster has its own rules.
Step 2 — Look for absolute words in the options. Words like "permanent", "always", "only", "never" are usually wrong when applied to RAM or general networking. Words like "temporary", "volatile", "filters" are usually correct for RAM and firewall respectively.
Step 3 — Eliminate the "boost" or "spread" distractors. Firewall questions almost always include one option saying it "boosts performance" (wrong — that's a switch/router) and one saying it's "malware" (wrong — that's a virus). Eliminate both immediately.
Step 4 — Check exact terminology. For register and protocol questions, every word in the expansion matters. "Memory Address Register" not "Main Address Register". If you recall the first word is "Memory", you can often eliminate three options at once.
Step 5 — Default to the most precise definition. SSC prefers textbook-precise language. The option that most exactly matches a standard definition is almost always correct.
Time target: 30-40 seconds per Computer Knowledge question. Do not spend more — these are pure recall, not reasoning. If it doesn't come in 40 seconds, mark and move.
Why this question: Tests whether you know the precise structural definition of a cell in Excel — a common trap because "worksheet" and "cell" are confused by many aspirants.
Solving path: Apply the GPS coordinate substitution — a cell is an intersection point defined by column letter + row number. Option B is the only one that uses the word "intersection". Options A (diagram), C (file), and D (worksheet) all describe larger or unrelated Excel elements. Lock in B in under 10 seconds.
Why this question: Tests the memory hierarchy — specifically what sits between CPU and primary (main) memory. This is one of the highest-frequency computer knowledge question types across SSC exams.
Solving path: Use the RCSHR ladder — Registers (inside CPU) → Cache → RAM (primary memory). "Between CPU and primary memory" = cache. Virtual memory is a RAM-extension technique. ROM is read-only. Secondary memory is the hard disk. Eliminate all three, pick cache. Time: 8 seconds.
Why this question: Tests backup device knowledge with a specific twist — the question signals "lengthy restoration process", which is the defining drawback of tape drives.
Solving path: Spot the keyword "lengthy restoration process" and map it directly to tape drive. SSD is fast (opposite of lengthy). NAS is network-dependent and doesn't inherently require lengthy restoration. DVD-RW cannot hold a full system image for a modern machine. The pattern recognition takes 5 seconds.
Why this question: RAM's primary purpose is the most-tested single computer fact across SSC papers. The volatility-vs-permanence trap appears in almost every iteration.
Solving path: Apply the DRAM-volatile rule immediately. Options A and D both use "permanent" or "long-term" — eliminate both. Option B says "managing peripheral devices" — that is the job of device drivers and the OS, not RAM. Only option C correctly describes RAM as temporary working storage. Time: 6 seconds.
Why this question: Firewall definition questions appear regularly and always include the same two distractors — "boosts performance" and "type of malware". Recognising this pattern makes it a free mark.
Solving path: Eliminate option C (hardware for boosting performance = router/switch, not firewall) and option D (malware that spreads via email = worm/virus, not a security tool). Option A describes file management software — wrong context. Option B correctly identifies a firewall as a security mechanism that filters and controls traffic. Time: 8 seconds.
Why this question: MAR is a favourite abbreviation question. The trap is "Main" vs "Memory" as the first word.
Solving path: The standard computer architecture term is unambiguously "Memory Address Register" — it holds a memory address. "Main" is not used in any standard CPU register terminology. "Access" (option D) is also non-standard. Eliminate options A, B, D and confirm C. Time: 5 seconds.
Why this question: GUI vs. command-line email agents is tested by listing three CLI tools alongside one GUI tool. If you know the EPM pattern, this is a 4-second question.
Solving path: Apply the EPM mnemonic — Elm, Pine, Mail are all command-line email clients. Netscape (Messenger) had a full graphical interface. The moment you see Elm, Pine, and Mail in the options, you know the fourth option (Netscape) must be the GUI-based one. Time: 4 seconds.
Confusing RAM with ROM: Many aspirants write "RAM stores permanent data" — this is precisely backwards. RAM is volatile (temporary); ROM is non-volatile (permanent). Every question that places "permanent" next to RAM is a trap option.
Calling a worksheet a cell: In MS Excel, the entire grid is the worksheet; the individual box is the cell. Choosing "a single worksheet within a workbook" as the definition of a cell is the most common error on Excel questions.
Calling a firewall a performance booster: A firewall filters security threats; it does not speed up your network. A switch, router, or network accelerator boosts performance. Conflating these two is a deliberate distractor SSC setters use repeatedly.
Expanding MAR as "Main Address Register": The word is "Memory", not "Main". The register stores a memory address — the name describes its content, which is a memory address. "Main" has no technical meaning in this context.
Confusing cache with virtual memory: Virtual memory is a technique where a portion of the hard disk is used as an extension of RAM when RAM is full — it is not a physical chip between CPU and RAM. Cache is the actual high-speed physical memory positioned between CPU and RAM.
Selecting NAS or SSD for archival backup: NAS is useful for shared network storage but requires a functioning network for restoration. SSD is fast but expensive and not the standard tool for full-system archival backups. Tape drives remain the industry standard for large-scale, complete backup despite slow sequential restoration — that trade-off is exactly what the question tests.