₹499 ₹999 · Full access — all mocks, practice sets & books · Unlock now
← Index: RRB NTPC General Awareness — Complete Guide 2026Chapter 21
Study Guide · Chapter 21

Biology — Life Processes, Genetics & Human Systems

Free study material · concepts, shortcuts & solved questions

✍️ Select any text to highlight or save it

Why This Chapter Matters

Computer Awareness routinely delivers 3 to 5 marks in RRB NTPC and frequently overlaps with other railway and banking exams, making it one of the highest return-on-effort topics in the whole General Awareness syllabus. Unlike history or geography, where the fact pool is enormous, computer awareness at this exam level draws from a fixed, learnable set: generations of computers, hardware versus software, memory hierarchy, operating systems, networking basics, and common abbreviations. Once you know this fixed set cold, you stop losing marks here entirely.

The single biggest mistake aspirants make is confusing RAM with ROM, and separately, confusing hardware terms with software terms when a question lists five items and asks "which one is not hardware." Both mix-ups come from studying definitions in isolation instead of understanding why each component exists and what job it does. This chapter builds every concept around a real function first, so the label naturally follows and stays fixed in memory, not just recognisable when you see it written down.

1. Computer Fundamentals and Generations

A computer is an electronic device that accepts input, processes it according to a set of instructions, stores data, and produces output. This input-process-output-storage cycle is the foundation every other computer topic builds on, and exam questions sometimes test this cycle directly by asking you to identify which stage a given device belongs to.

Computers have evolved through five broadly recognised generations, each defined by its core technology:

First Generation (roughly 1940s to mid-1950s) used vacuum tubes as the basic electronic component. These machines were enormous, generated huge amounts of heat, consumed massive electricity, and were extremely slow and unreliable by today's standards. ENIAC, one of the earliest general-purpose electronic computers, belongs to this era.

Second Generation (mid-1950s to mid-1960s) replaced vacuum tubes with transistors, which were smaller, faster, more reliable, and generated far less heat. This shift alone dramatically shrank computer size and cost compared to the first generation.

Third Generation (mid-1960s to early 1970s) introduced the integrated circuit (IC), which packed multiple transistors onto a single silicon chip. This generation brought computers closer to something resembling modern machines, with better speed, smaller size, and the beginnings of operating systems as we understand them.

Fourth Generation (early 1970s to roughly the late 1980s or later, depending on the source) is defined by the microprocessor, a single chip containing an entire central processing unit. This generation gave rise to personal computers becoming affordable enough for individual households and small offices, not just governments and large corporations.

Fifth Generation (from roughly the late 1980s/1990s onward, continuing today) focuses on artificial intelligence, parallel processing, and natural language capabilities, aiming for machines that can reason, learn, and interact more like humans rather than simply executing fixed instructions faster.

Memory hook: Picture a family shrinking its own kitchen appliance across five decades — a first-generation appliance the size of a whole room (vacuum tube), then one that fits on a table (transistor), then one that fits in your palm on a single chip (IC), then a tiny microchip powering the whole appliance (microprocessor), and finally a device that starts anticipating what you need before you ask (AI-driven fifth generation). Size keeps shrinking as intelligence keeps growing — that inverse relationship is the whole story of computer generations.

Exam trap: Do not assume "integrated circuit" and "microprocessor" mean the same thing. An integrated circuit is any chip combining multiple electronic components; a microprocessor is specifically a single IC that functions as a complete CPU. Third generation = IC broadly; fourth generation = the specific microprocessor breakthrough.

2. Hardware vs Software

Hardware refers to the physical, touchable components of a computer system — anything you could, in principle, drop on your foot. This includes the CPU (Central Processing Unit), monitor, keyboard, mouse, printer, hard disk, and RAM chips. Hardware is further divided by function:

  • Input devices feed data into the computer: keyboard, mouse, scanner, microphone, webcam.
  • Output devices display or produce results: monitor, printer, speaker.
  • Storage devices hold data for later use: hard disk drive (HDD), solid state drive (SSD), pen drive, CD/DVD.
  • Processing devices: primarily the CPU, which executes instructions.

Software refers to the set of instructions, programs, and data that tell hardware what to do. Software splits into two broad categories:

  • System software manages the computer's own basic operations and provides a platform for other programs to run — the operating system itself, device drivers, and utility programs fall here.
  • Application software performs specific tasks for the user — word processors, spreadsheet programs, web browsers, games, and accounting software all count as application software.

Think of hardware as the body of a car — engine, wheels, steering wheel — and software as the driver's knowledge and instructions telling that body exactly what to do at each moment. A car without a driver (hardware without software) simply sits there uselessly; a driver without a car (software without hardware) has nowhere to apply that knowledge. Neither functions meaningfully alone.

Exam trap: A CD or pen drive is hardware (a physical storage device), but the data or program stored on it is software. Questions sometimes test this exact boundary by asking whether "an operating system installed on a hard disk" counts as hardware or software — the operating system itself is software, even though it physically sits on a hardware storage device.

3. The CPU and Memory Hierarchy

The CPU is often called the "brain" of the computer and has three main functional units. The Control Unit (CU) directs the operation of the processor, telling other components what to do and when. The Arithmetic Logic Unit (ALU) performs all mathematical calculations and logical comparisons. Registers are small, extremely fast storage locations inside the CPU itself, holding data currently being processed.

Computer memory is organised as a hierarchy, balancing speed against cost and capacity — the fastest memory is always the most expensive per unit of storage and therefore the smallest in size, while the slowest memory is the cheapest and can hold the most data.

At the very top sit CPU registers, the fastest memory of all, directly inside the processor. Just below that sits cache memory, a small, very fast memory that stores frequently used data close to the CPU to avoid the delay of fetching it from slower main memory every time. Below cache sits primary memory, which includes RAM (Random Access Memory) and ROM (Read Only Memory). At the bottom sits secondary storage, the largest and slowest tier, including hard disks, SSDs, and optical discs.

RAM is volatile memory — it loses all its data the instant power is cut off. It temporarily holds the programs and data the CPU is actively working with right now. ROM is non-volatile memory — it retains its data even without power, and it typically stores permanent, rarely changed instructions such as the BIOS (Basic Input/Output System), which handles the initial startup process when you switch a computer on, before the operating system itself takes over.

Memory hook: Remember RAM as a whiteboard in a classroom — write on it during class, erase it clean once class ends (power off), ready for entirely fresh notes tomorrow. Remember ROM as a printed textbook — the content stays exactly as printed, day after day, whether the classroom lights are on or off.

Exam trap: Students frequently answer "RAM" when a question actually describes ROM's behaviour, and vice versa. The reliable test: ask yourself "does this data survive a power cut?" If yes, it's ROM (or any non-volatile storage); if no, it's RAM.

Memory type Volatile? Speed Typical role
Register Yes Fastest Data actively being processed by CPU
Cache Yes Very fast Frequently accessed data, close to CPU
RAM Yes Fast Active programs and data during use
ROM No Slower than RAM Permanent startup instructions (BIOS)
Secondary storage (HDD/SSD) No Slowest Long-term file and program storage

4. Operating Systems

An Operating System (OS) is system software that manages all hardware and software resources of a computer and provides a platform on which application software can run. Without an OS, every application would need to separately manage the keyboard, screen, memory, and storage directly, an impossibly repetitive task.

Key OS functions include process management (deciding which program gets CPU time and when), memory management (allocating RAM space to different running programs), file management (organising how data is stored and retrieved), and device management (coordinating communication between hardware components through drivers).

Common operating systems tested in exams include Windows (Microsoft, widely used on personal and office desktops), Linux (an open-source OS, free to use and modify, with the kernel originally developed by Linus Torvalds, widely used on servers and increasingly in government and enterprise settings for its security and cost advantages), macOS (Apple, used on Apple's own desktop and laptop hardware), and mobile operating systems Android (Google, open-source, the most widely used mobile OS globally) and iOS (Apple, used exclusively on iPhones).

Exam trap: Linux is described as open-source, meaning its underlying code is publicly available for anyone to view, modify, and redistribute, unlike Windows and macOS, which are proprietary (closed-source, owned and controlled by their respective companies). This open-versus-closed distinction is a favourite exam question.

A kernel is the core part of an operating system that has direct control over hardware and manages the most basic system functions; think of it as the foreman on a construction site who directly instructs the workers (hardware), while the rest of the operating system acts more like the office staff coordinating schedules and paperwork around that core work.

5. Internet and Networking Basics

A computer network connects two or more computers so they can share data and resources. Networks are classified by geographic scope:

  • LAN (Local Area Network) connects computers within a small area like an office building or a single campus.
  • MAN (Metropolitan Area Network) covers a larger area, roughly a city.
  • WAN (Wide Area Network) spans large geographic distances, potentially connecting entire countries or continents — the Internet itself is the largest example of a WAN.

The Internet is a global network of interconnected computer networks, while the World Wide Web (WWW), invented by Tim Berners-Lee in 1989, is a system of interlinked documents and resources accessed via the internet using web browsers. Exam trap: Students frequently use "internet" and "WWW" interchangeably, but the internet is the underlying network infrastructure, while the WWW is one particular service that runs on top of that infrastructure. Email, for instance, also runs on the internet but is not part of the WWW itself.

Key networking terms worth fixing firmly in memory: an IP address is a unique numerical label assigned to every device on a network, allowing data to be correctly routed to it, much like a postal address routes a letter to the correct house. A URL (Uniform Resource Locator) is the address typed into a browser to reach a specific web page. HTTP (HyperText Transfer Protocol) is the underlying protocol governing how web browsers and servers communicate, while HTTPS adds an encrypted, secure layer on top of that same communication, which is why the padlock icon appears in your browser address bar on HTTPS sites and why you should always check for it, especially on banking or payment pages.

A modem converts digital data from your computer into a signal that can travel over telephone or cable lines (and back again), while a router directs data traffic between different networks, commonly connecting your home devices to the wider internet through your internet service provider.

6. MS Office Basics

Microsoft Office is a widely tested application software suite, and exam questions often test which specific program handles which specific task.

MS Word is a word-processing program used for creating and editing text documents — letters, reports, resumes. Its file extension is typically .docx (or the older .doc).

MS Excel is a spreadsheet program used for organising data in rows and columns, performing calculations through formulas and functions, and creating charts. Its file extension is typically .xlsx (or the older .xls). A cell is the intersection of a row and column, identified by a combination like "A1," and formulas (starting with an equals sign) let users perform automatic calculations across ranges of cells.

MS PowerPoint is a presentation software program used to create slide-based visual presentations, commonly used for lectures, business pitches, and training sessions. Its file extension is typically .pptx (or the older .ppt).

MS Access is a database management program within the Office suite, used for storing and querying structured data, though it is tested far less often than Word, Excel, and PowerPoint at this exam level.

Memory hook: Think of the three main Office tools as three different rooms in an office building doing three different jobs: Word is the writing desk (text), Excel is the accounts room (numbers and calculations), PowerPoint is the boardroom (visual presentation to an audience). Each room has its own tools; you would not do accounting on a whiteboard in the boardroom, and you would not draft a formal letter in a spreadsheet.

7. Cybersecurity Basics

Cybersecurity refers to protecting computer systems, networks, and data from unauthorized access, damage, or theft. A handful of core terms show up repeatedly across exams.

A virus is a malicious program that attaches itself to a legitimate file or program and spreads when that file is executed or shared, potentially damaging data or system functions. A worm is similar but spreads independently across networks without needing to attach itself to another program or requiring a user to run anything — it self-replicates and travels on its own. A Trojan horse disguises itself as legitimate, useful software while secretly carrying out harmful actions once installed, exactly like the mythological wooden horse it is named after, appearing harmless on the outside while hiding a threat within.

Malware is the umbrella term covering all these malicious programs — viruses, worms, Trojans, ransomware, and spyware collectively.

Phishing is a social-engineering technique where attackers send fraudulent messages, often disguised as coming from a trustworthy source like a bank, to trick victims into revealing sensitive information such as passwords or card details. Exam trap: Phishing is a technique targeting human trust and behaviour, not a piece of malicious software itself — do not confuse it with a virus or worm, which are programs, not deception tactics.

A firewall is a security system, either hardware or software, that monitors and controls incoming and outgoing network traffic based on defined security rules, acting like a security guard at a gate checking every visitor against a list before letting them through.

Two-factor authentication (2FA) adds a second verification step beyond just a password (commonly an OTP sent to a registered mobile number), significantly reducing the risk of unauthorized account access even if a password alone is somehow compromised.

Encryption converts readable data into a coded, unreadable format that can only be reversed (decrypted) with the correct key, protecting data during storage or transmission — this is precisely what the "S" in HTTPS provides for your web traffic.

India's primary cybersecurity incident response agency is CERT-In (Indian Computer Emergency Response Team), functioning under the Ministry of Electronics and Information Technology, responsible for tracking, responding to, and issuing advisories on cybersecurity threats and incidents across the country.

8. Common Computer Abbreviations

Exam papers regularly test straightforward abbreviation-expansion questions, so treat this list as high-value, low-effort marks. Do not skip it thinking it is "too basic" — that exact assumption is why students lose these easy points.

Abbreviation Full form
CPU Central Processing Unit
RAM Random Access Memory
ROM Read Only Memory
BIOS Basic Input/Output System
USB Universal Serial Bus
LAN Local Area Network
WAN Wide Area Network
HTTP HyperText Transfer Protocol
HTTPS HyperText Transfer Protocol Secure
URL Uniform Resource Locator
HTML HyperText Markup Language
PDF Portable Document Format
GUI Graphical User Interface
IP Internet Protocol
ISP Internet Service Provider
CD/DVD Compact Disc / Digital Versatile Disc
SSD Solid State Drive
HDD Hard Disk Drive
VPN Virtual Private Network
OTP One-Time Password

Quick Revision — One-Line Facts

  • Computers have five generations: vacuum tubes, transistors, integrated circuits, microprocessors, and AI-focused systems.
  • ENIAC was among the earliest first-generation electronic computers.
  • Hardware is the physical component; software is the set of instructions running on that hardware.
  • System software manages basic operations; application software performs specific user tasks.
  • The CPU has three units: Control Unit, Arithmetic Logic Unit, and Registers.
  • Memory hierarchy, fastest to slowest: registers, cache, RAM, ROM, secondary storage.
  • RAM is volatile (loses data on power-off); ROM is non-volatile (retains data without power).
  • ROM commonly stores the BIOS, which manages a computer's startup process.
  • An operating system manages process, memory, file, and device functions.
  • Linux is open-source; Windows and macOS are proprietary, closed-source systems.
  • A kernel is the OS core with direct hardware control.
  • LAN covers a small area; MAN covers a city; WAN covers large distances, with the Internet as the largest WAN example.
  • The Internet is the underlying network; the World Wide Web is a service (linked documents) running on it.
  • Tim Berners-Lee invented the World Wide Web in 1989.
  • An IP address uniquely identifies a device on a network.
  • HTTPS adds an encrypted, secure layer on top of HTTP.
  • A modem converts digital data to signals for transmission over telephone/cable lines and back.
  • A router directs data traffic between different networks.
  • MS Word handles text documents (.docx); MS Excel handles spreadsheets (.xlsx); MS PowerPoint handles presentations (.pptx).
  • A cell in Excel is the intersection of a row and column, and formulas begin with an equals sign.
  • A virus needs a host file to spread; a worm spreads independently across networks without attaching to a file.
  • A Trojan horse disguises itself as legitimate software while hiding malicious intent.
  • Malware is the umbrella term covering viruses, worms, Trojans, ransomware, and spyware.
  • Phishing is a deception technique targeting human trust, not a piece of software itself.
  • A firewall monitors and controls network traffic based on security rules.
  • Two-factor authentication adds a verification step beyond just a password.
  • Encryption converts readable data into a coded, unreadable format, reversible only with the correct key.
  • CERT-In is India's national cybersecurity incident response agency, under the Ministry of Electronics and Information Technology.
  • USB stands for Universal Serial Bus; GUI stands for Graphical User Interface.
  • An integrated circuit combines multiple electronic components on one chip; a microprocessor is specifically an IC functioning as a complete CPU.

Memory Tables

Table 1: Computer Generations

Generation Core technology Approximate era
First Vacuum tubes 1940s–mid 1950s
Second Transistors Mid 1950s–mid 1960s
Third Integrated circuits Mid 1960s–early 1970s
Fourth Microprocessors Early 1970s onward
Fifth Artificial intelligence Late 1980s/1990s onward

Table 2: Hardware vs Software Quick Sort

Category Examples
Input hardware Keyboard, mouse, scanner, microphone
Output hardware Monitor, printer, speaker
Storage hardware HDD, SSD, pen drive, CD/DVD
System software Operating system, device drivers
Application software MS Word, MS Excel, web browser

Table 3: Malware and Threat Types

Term Defining behaviour
Virus Attaches to a file, spreads when that file runs
Worm Self-replicates and spreads across networks independently
Trojan horse Disguised as legitimate software, hides harmful action
Phishing Deceives users into revealing sensitive information
Ransomware Locks or encrypts data, demands payment for release

Practice MCQs

Q1. Which basic electronic component defined the first generation of computers? (a) Transistor (b) Vacuum tube (c) Integrated circuit (d) Microprocessor

Q2. Which of the following is an example of an output device? (a) Keyboard (b) Scanner (c) Monitor (d) Microphone

Q3. Which type of memory loses all its stored data the moment power is switched off? (a) ROM (b) RAM (c) Hard disk (d) Pen drive

Q4. The BIOS, which manages a computer's startup process, is typically stored in which type of memory? (a) RAM (b) Cache (c) ROM (d) Register

Q5. Which operating system is described as open-source, allowing its code to be freely viewed and modified? (a) Windows (b) macOS (c) Linux (d) iOS

Q6. Which network type covers the smallest geographic area, typically a single office or building? (a) WAN (b) MAN (c) LAN (d) Internet

Q7. Who is credited with inventing the World Wide Web in 1989? (a) Bill Gates (b) Tim Berners-Lee (c) Steve Jobs (d) Linus Torvalds

Q8. What does the "S" in HTTPS specifically indicate about a website's data transmission? (a) Speed (b) Storage (c) Security/encryption (d) Server type

Q9. Which Microsoft Office program is primarily used for organising data in rows and columns with formulas? (a) MS Word (b) MS Excel (c) MS PowerPoint (d) MS Access

Q10. What is the key difference between a computer virus and a computer worm? (a) A virus spreads independently while a worm needs a host file (b) A worm spreads independently across networks while a virus needs a host file to spread (c) Both spread identically with no difference (d) A virus only affects hardware, a worm only affects software

Q11. Phishing is best described as which type of threat? (a) A self-replicating malicious program (b) A deception technique targeting human trust to steal information (c) A hardware failure (d) A type of firewall

Q12. Which term describes converting readable data into a coded format that can only be reversed with a correct key? (a) Compression (b) Encryption (c) Formatting (d) Caching

Q13. Which of the following correctly orders memory from fastest to slowest? (a) Secondary storage, RAM, cache, register (b) Register, cache, RAM, secondary storage (c) RAM, register, secondary storage, cache (d) Cache, secondary storage, register, RAM

Q14. India's national cybersecurity incident response agency, functioning under the Ministry of Electronics and Information Technology, is known by which abbreviation? (a) CERT-In (b) TRAI (c) DRDO (d) NIC

Q15. A device that converts digital data into a signal for transmission over telephone or cable lines, and converts it back on the receiving end, is called a: (a) Router (b) Modem (c) Switch (d) Firewall

Answer Key

Q Answer Reason
1 (b) Vacuum tubes powered first-generation computers before transistors replaced them.
2 (c) A monitor displays results; keyboard, scanner, and microphone are all input devices.
3 (b) RAM is volatile memory, wiped clean the instant power is cut, unlike non-volatile ROM.
4 (c) ROM retains data without power, making it suited for permanent startup instructions like BIOS.
5 (c) Linux is open-source and freely modifiable, unlike proprietary Windows and macOS.
6 (c) LAN connects computers within a small local area like one office or campus.
7 (b) Tim Berners-Lee created the World Wide Web in 1989 as a service running on the internet.
8 (c) The "S" in HTTPS means the connection is encrypted and secure, unlike plain HTTP.
9 (b) MS Excel organises data into rows and columns and supports formula-based calculation.
10 (b) A worm self-replicates and spreads on its own; a virus needs an executed host file to spread.
11 (b) Phishing manipulates human trust through deceptive messages, not a self-running program.
12 (b) Encryption scrambles data into unreadable form, reversible only with the correct decryption key.
13 (b) Register is fastest and smallest; secondary storage is slowest but largest, forming the hierarchy.
14 (a) CERT-In tracks and responds to cybersecurity threats nationally, under MeitY.
15 (b) A modem converts digital signals for transmission and reconversion, distinct from a router's traffic-directing job.
Page 1 of 1
← Chapter 20TOC IndexChapter 22