Computer Hardware for IBPS PO — Components, Memory, Ports & Peripherals

beginner 18 min read

Concept

Computer hardware refers to all the physical, tangible components that make up a computer system — the parts you can touch, as opposed to software, which is intangible instructions. Think of a computer like a bank branch: the building itself (hardware) is distinct from the banking procedures and workflows (software) that run inside it.

Every hardware component in a computer has a specific role, and they work together in a strict hierarchy. The CPU (Central Processing Unit) is the branch manager — it makes all decisions. RAM is the manager's desk — fast to access, but everything on it is cleared at the end of the day. The hard drive or SSD is the file cabinet — slow to access relative to the desk, but everything stored there survives overnight. The motherboard is the office floor itself — every component is mounted on it and communicates through it.

For IBPS PO, the Computer Awareness section tests you on facts, not theory. You will never be asked to design a circuit. You will be asked: "Which cache level is fastest?" or "What is USB 3.0's transfer rate?" — questions that reward accurate recall of specific numbers and relationships.

The hardware taxonomy you need to know fits into five buckets:

  1. Processing — CPU, cores, hyper-threading, clock speed
  2. Memory — RAM (volatile), ROM/PROM/EPROM (non-volatile), cache (L1/L2/L3)
  3. Storage — HDD, SSD, optical drives
  4. Input/Output devices — keyboard, mouse, scanner (input); monitor, printer, speakers (output)
  5. Connectivity — USB, PCIe slots, ports, the motherboard as the backbone

Learn the distinctions within each bucket. IBPS PO questions almost always test the boundary between two adjacent concepts — volatile vs. non-volatile, L1 vs. L2 cache, USB 2.0 vs. 3.0, ATX vs. Mini-ITX. Your job is to know exactly where those boundaries are.


Deep Dive

The CPU and Processing

The CPU executes instructions. Its speed is measured in GHz (gigahertz — billion cycles per second). Modern CPUs have multiple cores, meaning multiple independent processing units on a single chip. A quad-core processor can run four instruction threads simultaneously in parallel.

Hyper-threading is Intel's proprietary implementation of Simultaneous Multi-Threading (SMT). It makes one physical core appear as two logical processors to the operating system. The OS then schedules two threads onto that core at once. The physical execution units are shared, so you get roughly 20-30% throughput improvement — not double — compared to a non-hyper-threaded core. The key exam distinction: hyper-threading is not the same as multi-core. Multi-core = more physical cores. Hyper-threading = one physical core pretending to be two logical cores.

Turbo Boost temporarily increases clock speed when thermal headroom allows. Overclocking is manually running a chip above its rated speed. Neither involves doubling logical cores — that is hyper-threading's job.

Memory Hierarchy

Here's the structure from fastest to slowest, smallest to largest:

| Level | Location | Speed | Size | |-------|----------|-------|------| | L1 Cache | Inside CPU chip, per core | Fastest | 16 KB – 64 KB per core | | L2 Cache | Inside CPU chip (may be shared) | Fast | 256 KB – 1 MB per core | | L3 Cache | On CPU die, shared across cores | Moderate | 4 MB – 64 MB | | RAM | On motherboard (DIMMs) | Slower | 4 GB – 128 GB typical | | SSD/HDD | Separate storage device | Much slower | 256 GB – several TB |

RAM (Random Access Memory) is volatile — data disappears when power is cut. It is the working memory of the computer. Two main types: DRAM (Dynamic RAM, needs constant refreshing, used as main memory) and SRAM (Static RAM, faster, used in cache).

ROM (Read-Only Memory) is non-volatile — data survives power loss. It stores firmware like BIOS. Variants:

The exam question almost always targets: "Which is volatile?" Answer: RAM. Everything with "ROM" in the name is non-volatile.

Ports and Connectivity

USB (Universal Serial Bus) — the dominant standard for connecting peripherals and external storage.

| Version | Max Transfer Rate | |---------|------------------| | USB 1.1 | 12 Mbps | | USB 2.0 | 480 Mbps | | USB 3.0 | 5 Gbps | | USB 3.1 Gen 2 | 10 Gbps | | USB 3.2 Gen 2x2 | 20 Gbps |

USB 3.0 is 5 Gbps — approximately 10x faster than USB 2.0's 480 Mbps. This specific comparison is a favourite PYQ pattern. USB ports are identified by colour in hardware: USB 3.0 ports are typically blue; USB 2.0 ports are black or white.

Legacy ports — PS/2 (old keyboard/mouse connector, round), Serial (DB-9, slow), Parallel (DB-25, used for old printers). All three have been largely replaced by USB in modern systems.

Motherboard

The motherboard is the main circuit board connecting all components. ATX (Advanced Technology eXtended) is the standard form factor for desktop motherboards — the default dimensions the industry converged on. Smaller variants are Micro-ATX and Mini-ITX (popular in compact builds). Larger is E-ATX (server/workstation).

Expansion slots on the motherboard allow adding cards:

Exam pattern: if the question asks for the current standard for graphics cards, the answer is PCIe x16. If it mentions "older" or "legacy" GPU slot, it's AGP.

Printers (Output Devices)

| Printer Type | Technology | Key Characteristic | |-------------|-----------|-------------------| | Dot Matrix | Pins striking ribbon | Impact printer, can make carbon copies | | Inkjet | Liquid ink droplets | Good colour, slower, lower cost | | Laser | Laser + photosensitive drum + toner | High speed, high quality text, uses heat to fuse toner | | Thermal | Heat-sensitive paper | Receipt printers, no ink needed |

Laser printers: the laser charges a drum selectively, toner (dry powder) adheres to charged areas, transfers to paper, then a fuser unit applies heat to bond the toner permanently. This is the process behind the IBPS PO question on laser printers.


Memory Tricks & Shortcuts

patternRAM vs ROM: The Power Test

When asked volatile vs. non-volatile: apply the "power cut" test. If power is cut, does data survive? RAM = No (volatile). ROM/PROM/EPROM/EEPROM = Yes (non-volatile). The word "Read-Only" in ROM implies it was written before you ever touched it — so of course it survives power cuts, it was never meant to be erased by normal operation. Standard method: reasoning through each option (~30s). Pattern method: apply the single power-cut test (~5s). Reduces 4-option elimination to a 1-step decision.

patternUSB Speed Ladder — Anchor at 3.0

Memorise one anchor: USB 3.0 = 5 Gbps. Then: USB 2.0 is 10x slower (480 Mbps), USB 3.1 Gen 2 is 2x faster (10 Gbps), USB 3.2 Gen 2x2 is 4x faster (20 Gbps). If you blank on USB 2.0 speed, you can recover it: 5 Gbps ÷ 10 = 500 Mbps ≈ 480 Mbps. Standard approach: memorise all four figures independently (~45s recall under pressure). Anchor method: memorise one number and derive the rest (~10s). Saves 35s on a speed-comparison question.

patternCache Hierarchy — Closer = Faster = Smaller

L1 is closest to the CPU core, so it is fastest and smallest. L2 is next. L3 is shared and farthest. The rule: distance from CPU core increases L-number, decreases speed, increases size. You never need to memorise this as isolated facts — the physical distance principle derives everything. Any question asking "which is fastest/smallest" → answer is L1. Standard recall: 20s. Pattern derivation: 3s.

eliminationPCIe vs Legacy Slots — The Timeline Trick

Slot generations in order: ISA (oldest) → PCI → AGP (GPU-specific, obsolete) → PCIe x16 (current GPU standard). Questions use temporal clues: "modern" or "current standard" → PCIe x16. "Older GPU slot" → AGP. "Legacy peripheral card" → PCI. Eliminate by era. Standard approach: recall all slot specs (~40s). Elimination by timeline: match the adjective in the question to the era (~8s). Eliminates 3 of 4 options instantly.

substitutionATX is the Default

For motherboard form factor questions, ATX is the default correct answer unless the question specifies "compact", "small form factor", or "workstation/server". Mini-ITX = compact desktop. Micro-ATX = in-between. E-ATX = large workstation. If the question says "standard desktop", substitute ATX without reading further. This single substitution rule handles approximately 80% of form-factor questions in 3 seconds.


Fast-Solving Framework

When you see a Computer Hardware question in the IBPS PO exam, run this decision tree in under 10 seconds:

Step 1 — Identify the category. Is the question about memory, CPU, ports, motherboard, or printers? One of five buckets.

Step 2 — Memory question? Check for the word "volatile" or "loses data." If yes, the answer is RAM. If the question asks about firmware or BIOS storage, answer is ROM or EEPROM.

Step 3 — Cache question? "Fastest and smallest" always maps to L1. "Integrated into CPU chip" also maps to L1.

Step 4 — Port/speed question? Anchor at USB 3.0 = 5 Gbps. Derive up or down.

Step 5 — Motherboard/slot question? Apply the timeline: ISA → PCI → AGP → PCIe x16. "Standard desktop board" = ATX. "Modern GPU slot" = PCIe x16.

Step 6 — Printer question? "Laser beam + drum" is always Laser Printer. "Pins + ribbon" is always Dot Matrix. "Heat-sensitive paper" is Thermal.

If two options look equally correct, check for temporal qualifiers — "modern", "current", "latest" always point to the most recent technology in that category.


Solved PYQs

Why this question: Tests the most commonly confused USB speed boundary — the gap between USB 2.0 and 3.0 is a favourite distractor because 480 Mbps and 10 Gbps are both plausible answers if you don't anchor correctly.

Previous Year Questionपिछले वर्ष का प्रश्न
What is the maximum theoretical data transfer rate of USB 3.0?
USB 3.0 की अधिकतम थ्योरेटिकल डेटा ट्रांसफर रेट क्या है?
  1. 480 Mbps
  2. 5 Gbps
  3. 10 Gbps
  4. 20 Gbps
  1. 480 Mbps
  2. 5 Gbps
  3. 10 Gbps
  4. 20 Gbps
Solutionसमाधान
USB 3.0 has a maximum theoretical data transfer rate of 5 Gbps (gigabits per second), which is approximately 10 times faster than USB 2.0's 480 Mbps. This significant speed improvement makes USB 3.0 suitable for high-speed data transfer applications.
USB 3.0 की अधिकतम सैद्धांतिक डेटा ट्रांसफर दर 5 Gbps (गीगाबिट प्रति सेकंड) है, जो USB 2.0 की 480 Mbps से लगभग 10 गुना तेज है। यह महत्वपूर्ण गति सुधार USB 3.0 को हाई-स्पीड डेटा ट्रांसफर के लिए उपयुक्त बनाता है।

Solving path: The question is about USB 3.0 specifically. Anchor: USB 3.0 = 5 Gbps. Option A (480 Mbps) is USB 2.0's speed — the most common wrong answer because candidates confuse the two. Option C (10 Gbps) is USB 3.1 Gen 2. Option D (20 Gbps) is USB 3.2. Select B immediately.


Why this question: Cache level hierarchy is tested every few years in IBPS PO Computer Awareness. The phrase "integrated directly into the CPU chip" is the discriminating clue — candidates confuse L1 with L3 (which is also on the CPU die in modern chips but shared, not per-core).

Previous Year Questionपिछले वर्ष का प्रश्न
Which cache memory level is typically integrated directly into the CPU chip and is the fastest but smallest?
कौन सा कैश मेमोरी लेवल आमतौर पर सीधे CPU चिप में लगा होता है और सबसे तेज़ लेकिन सबसे छोटा होता है?
  1. L1 Cache
  2. L2 Cache
  3. L3 Cache
  4. L4 Cache
  1. L1 Cache
  2. L2 Cache
  3. L3 Cache
  4. L4 Cache
Solutionसमाधान
L1 (Level 1) cache is integrated directly into the CPU chip and is the fastest but smallest cache memory. It typically ranges from 16KB to 64KB per core and provides the quickest access to frequently used instructions and data for the processor.
L1 (लेवल 1) कैश सीधे CPU चिप में एकीकृत होता है और यह सबसे तेज़ लेकिन सबसे छोटी कैश मेमोरी है। यह आमतौर पर प्रति कोर 16KB से 64KB तक होती है और प्रोसेसर के लिए अक्सर उपयोग किए जाने वाले निर्देशों और डेटा तक सबसे तेज़ पहुंच प्रदान करती है।

Solving path: "Fastest but smallest" + "integrated into CPU chip" = L1. Apply the distance-from-core principle: L1 is at the core itself. L2 is nearby. L3 is shared. L4 barely exists in consumer hardware and is wrong by elimination. Select A.


Why this question: Volatile memory is the most fundamental memory concept tested in bank exams. The trap here is that PROM and EPROM sound like they could be temporary because they can be reprogrammed — but "reprogrammed" is not the same as "erased by power loss."

Previous Year Questionपिछले वर्ष का प्रश्न
Which of the following memory types is volatile and loses data when power is turned off?
निम्नलिखित में से कौन सी मेमोरी volatile होती है और बिजली बंद होने पर डेटा खो देती है?
  1. ROM
  2. PROM
  3. RAM
  4. EPROM
  1. ROM
  2. PROM
  3. RAM
  4. EPROM
Solutionसमाधान
RAM (Random Access Memory) is a volatile memory that temporarily stores data and instructions while the computer is running. When power is turned off, all data in RAM is lost. ROM, PROM, and EPROM are non-volatile memories that retain data even without power.
RAM (रैंडम एक्सेस मेमोरी) एक अस्थिर मेमोरी है जो कंप्यूटर चालू होने पर अस्थायी रूप से डेटा और निर्देशों को स्टोर करती है। जब बिजली बंद हो जाती है, तो RAM में सभी डेटा खो जाता है। ROM, PROM, और EPROM गैर-अस्थिर मेमोरी हैं जो बिजली के बिना भी डेटा को बनाए रखती हैं।

Solving path: Apply the power-cut test. ROM — survives. PROM — survives (written once, permanent). EPROM — survives (erased only by UV light, not power). RAM — does not survive. Answer is C. Eliminate A, B, D in one sweep using the power-cut test.


Why this question: The PCIe x16 vs. older slot formats question tests whether you know the current standard. AGP is the most dangerous distractor because it was specifically designed for GPUs before PCIe replaced it.

Previous Year Questionपिछले वर्ष का प्रश्न
Which expansion slot is commonly used for installing graphics cards in modern motherboards?
आधुनिक मदरबोर्ड में ग्राफिक्स कार्ड लगाने के लिए आमतौर पर कौन सा एक्सपेंशन स्लॉट उपयोग किया जाता है?
  1. PCI
  2. AGP
  3. PCIe x16
  4. ISA
  1. PCI
  2. AGP
  3. PCIe x16
  4. ISA
Solutionसमाधान
PCIe x16 (PCI Express x16) is the standard expansion slot for installing graphics cards in modern motherboards. It provides high bandwidth (up to 16 GB/s in PCIe 3.0) necessary for handling demanding graphics processing tasks and modern GPU requirements.
PCIe x16 (PCI एक्सप्रेस x16) आधुनिक मदरबोर्ड में ग्राफिक्स कार्ड इंस्टॉल करने के लिए मानक एक्सपेंशन स्लॉट है। यह आधुनिक GPU आवश्यकताओं और demanding ग्राफिक्स प्रोसेसिंग कार्यों को संभालने के लिए आवश्यक उच्च बैंडविड्थ प्रदान करता है।

Solving path: Apply the timeline elimination. ISA — ancient, general purpose. PCI — older, general purpose. AGP — GPU-specific but obsolete (early 2000s). PCIe x16 — current standard, high bandwidth. "Modern motherboards" in the question stem eliminates A, B, D. Select C.


Why this question: Hyper-threading is frequently confused with multi-core processing. IBPS PO specifically tests whether candidates know which technology makes one core appear as two logical processors — a very specific distinction.

Previous Year Questionपिछले वर्ष का प्रश्न
Which technology allows a single physical CPU core to appear as two logical processors to the operating system?
कौन सी तकनीक एक सिंगल फिजिकल CPU कोर को ऑपरेटिंग सिस्टम के लिए दो लॉजिकल प्रोसेसर की तरह दिखाती है?
  1. Multi-core processing
  2. Hyper-threading
  3. Turbo Boost
  4. Overclocking
  1. Multi-core processing
  2. Hyper-threading
  3. Turbo Boost
  4. Overclocking
Solutionसमाधान
Hyper-threading technology allows a single physical CPU core to appear as two logical processors to the operating system. This enables better utilization of CPU resources by allowing two threads to execute simultaneously on the same core, improving overall system performance for multithreaded applications.
हाइपर-थ्रेडिंग तकनीक एक भौतिक CPU कोर को ऑपरेटिंग सिस्टम के लिए दो तार्किक प्रोसेसर के रूप में दिखाने की अनुमति देती है। यह एक ही कोर पर दो थ्रेड्स को एक साथ execute करने की अनुमति देकर CPU संसाधनों का बेहतर उपयोग सक्षम करती है।

Solving path: Read the key phrase: "single physical CPU core appears as two logical processors." Multi-core processing means multiple physical cores — not applicable here. Turbo Boost increases clock speed — not applicable. Overclocking is manual speed increase — not applicable. Only Hyper-threading makes one physical core appear as two logical ones. Select B.


Common Mistakes


Related Topics

Practice on SarkariRise

Sign up + get 3 free mocks →