Computer Knowledge for SSC CGL — Hardware, Software, MS Office & Internet Essentials

beginner 18 min read

Concept

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:

  1. Hardware — physical components (CPU, RAM, ROM, cache, registers, storage devices)
  2. Software — system software, application software, operating systems, Office suite
  3. Networking and Internet — protocols, IP, firewall, email architecture
  4. Data Storage and Backup — HDD, SSD, optical media, tape drives
  5. Basic Concepts — binary, units (bit/byte/KB/MB/GB), input-output devices

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.


Deep Dive

Memory Hierarchy in Detail

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.

Storage Devices

| 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.

MS Excel Fundamentals

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:

Network Security: Firewall

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:

Email Architecture

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).

MAR vs. Similar-Sounding Terms

| 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.


Memory Tricks & Shortcuts

patternRCSHR Hierarchy Ladder

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.

patternVolatile or Not: DRAM vs ROM

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).

eliminationGUI vs CLI Email Clients

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.

patternTape = Archival, Not Speed

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).

substitutionCell = Coordinates, Not Container

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).


Fast-Solving Framework

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.


Solved PYQs

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.

Previous Year Questionपिछले वर्ष का प्रश्न2022
What is a cell in Microsoft Excel?
  1. A small diagram or chart.
  2. The intersection of a row and a column in a worksheet.
  3. A separate file used to store data.
  4. A single worksheet within a workbook
Solutionसमाधान
In Excel, a cell is formed at the point where a row and a column meet, and each cell is identified by a unique reference combining the column letter and row number.

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.

Previous Year Questionपिछले वर्ष का प्रश्न2022
A high speed memory is placed between the Central Processing Unit (CPU) and the primary memory known as ______ memory.
  1. virtual
  2. read only
  3. cache
  4. secondary
Solutionसमाधान
Cache memory sits between the CPU and main memory to provide faster data access, storing frequently used programs and data so the processor can retrieve them quickly.

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.

Previous Year Questionपिछले वर्ष का प्रश्न2022
Which backup device provides a convenient way to create system images and complete backups term are required lengthy restoration process?
  1. Tape drive
  2. Network-attached storage (NAS)
  3. Solid-state drive (SSD)
  4. DVD-RW disc
Solutionसमाधान
Tape drives are well-suited for creating full system images and complete backups, though restoring from them can be a lengthy process.

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.

Previous Year Questionपिछले वर्ष का प्रश्न2022
What is the primary purpose of RAM (Random Access Memory) in a computer?
  1. Storing permanent data and files
  2. Managing peripheral devices
  3. Providing temporary storage for data that the CPU is currently processing
  4. Providing long-term storage for programs
Solutionसमाधान
RAM offers fast, temporary storage for the operating system and currently running applications; it loses its contents when the power is switched off.

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.

Previous Year Questionपिछले वर्ष का प्रश्न2022
What is a 'Firewall' in the context of network security?
  1. A software application for managing files and folders.
  2. A security mechanism that filters and controls network traffic.
  3. A hardware device used to boost network performance
  4. A type of malware that spreads through email attachments
Solutionसमाधान
A firewall is a security device or software that monitors and controls incoming and outgoing network traffic based on predefined security rules.

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.

Previous Year Questionपिछले वर्ष का प्रश्न2022
In computer registers, MAR stands for ______.
  1. Main Address Register
  2. Main Access Register
  3. Memory Address Register
  4. Memory Access Register
Solutionसमाधान
MAR stands for Memory Address Register, which holds the memory address of the location from which data is to be fetched or to which it will be stored.

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.

Previous Year Questionपिछले वर्ष का प्रश्न2022
Which of the following is an example of GUI-based user agent in email?
  1. Netscape
  2. Elm
  3. Mail
  4. Pine
Solutionसमाधान
Netscape provided a graphical user interface (GUI) for managing and sending emails through Netscape Messenger, making it a GUI-based email user agent.

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.


Common Mistakes


Related Topics

Practice on SarkariRise

Sign up + get 3 free mocks →