Sarkari RiseLogin

Computer Fundamentals Questions for IBPS RRB PO

Free, AI-curated practice for the Computer Fundamentals section of IBPS RRB PO. We have 14+ verified questions in this bank. Below: 5 sample questions. Sign up free to unlock unlimited practice + AI explanations + per-topic analytics.

▶ Start free — IBPS RRB PO mockAll IBPS RRB PO resourcesAlready a user? Sign in →
Why this topic matters · 8 min read
Computer Fundamentals is a regular fixture in the IBPS RRB PO exam under the Computer Knowledge section, which typically carries 40 marks (40 questions). Questions test basic definitions, classification of computers, components like CPU and memory, input/output devices, number systems, and storage units. Expect 4-7 direct questions from this topic alone. It is one of the easiest sections to score if you memorize key facts and units correctly.

What is a Computer and Its Characteristics

A computer is an electronic device that accepts data (input), processes it according to instructions (program), and gives output. It stores data and instructions in memory. Think of it like a very obedient clerk: you give it work, it does it fast without mistakes, and never forgets what you told it to store. Key characteristics that exams ask about are speed, accuracy, diligence (never gets tired), versatility (can do many types of work), and storage. The computer cannot think on its own — it only follows instructions.

  • Speed is measured in MIPS (Million Instructions Per Second) or FLOPS for scientific computing
  • Computers do not have IQ — they follow stored instructions only (called a program)
  • GIGO principle: Garbage In, Garbage Out — bad input gives bad output
  • Computers are electronic, not mechanical — they use electrical signals
  • Diligence means a computer performs the same task repeatedly without error or fatigue
  • Versatility means one machine can do accounting, graphics, and communication

Generations of Computers

Computers evolved through five generations, each defined by the core switching technology used. Exam questions typically ask which generation used which technology or which era a famous computer belongs to. Think of it as a family tree: Vacuum Tubes gave birth to Transistors, which gave birth to ICs, which gave birth to Microprocessors.

  • 1st Gen (1940s-50s): Vacuum Tubes — ENIAC, UNIVAC — huge, hot, slow
  • 2nd Gen (1950s-60s): Transistors — smaller, faster, less heat
  • 3rd Gen (1960s-70s): Integrated Circuits (IC) — IBM 360 series
  • 4th Gen (1970s-present): Microprocessor (VLSI) — personal computers, laptops
  • 5th Gen (present-future): Artificial Intelligence, ULSI — still developing
  • ENIAC is called the first general-purpose electronic computer

Classification of Computers

Computers are classified by size and processing power. IBPS RRB PO directly asks questions like 'which is the fastest computer' or 'what type is used in weather forecasting.' Supercomputers handle massive scientific calculations. Mainframes handle large-scale banking and airline data. Minicomputers are mid-range. Microcomputers include PCs and laptops.

  • Supercomputer: fastest, most powerful — used in weather forecasting, nuclear simulations — e.g., PARAM (India)
  • Mainframe: handles millions of transactions — used by banks, airlines — e.g., IBM Z-series
  • Minicomputer: mid-range, used in departments — e.g., PDP-11
  • Microcomputer: personal use — PCs, laptops, tablets — most common type
  • Embedded computers: built into devices like washing machines, ATMs
  • Analog computers measure physical quantities; Digital computers count digits — exams prefer digital

Hardware: CPU and Components

The CPU (Central Processing Unit) is the brain of the computer. It has three main parts: ALU (Arithmetic Logic Unit) which does calculations and comparisons, CU (Control Unit) which directs traffic inside the computer, and registers which are tiny ultra-fast storage inside the CPU. Memory is of two main types: Primary (RAM and ROM, directly accessed by CPU) and Secondary (hard disk, pen drive — permanent storage). RAM is volatile (loses data when power is off); ROM is non-volatile.

  • ALU performs arithmetic (+, -, *, /) and logical operations (AND, OR, NOT, comparisons)
  • Control Unit does NOT process data — it only coordinates and controls
  • RAM = Random Access Memory — temporary, volatile, faster
  • ROM = Read Only Memory — permanent, non-volatile, contains BIOS
  • Cache memory is between RAM and CPU — fastest memory available to CPU
  • Secondary storage: HDD, SSD, CD, DVD, Pen Drive — non-volatile, permanent

Storage Units and Number Systems

Storage is measured in bits and bytes. One byte = 8 bits. This forms the base of all storage units. IBPS RRB PO frequently asks conversion questions or 'which unit is larger' type questions. Number systems (binary, decimal, octal, hexadecimal) appear occasionally — binary is most important. Binary uses only 0 and 1 because computers use electrical signals: ON (1) and OFF (0). Hexadecimal is used as a shorthand for binary in programming.

  • 1 Byte = 8 Bits, 1 KB = 1024 Bytes, 1 MB = 1024 KB, 1 GB = 1024 MB, 1 TB = 1024 GB
  • Binary (base 2), Octal (base 8), Decimal (base 10), Hexadecimal (base 16)
  • Hexadecimal digits: 0-9 and A(10), B(11), C(12), D(13), E(14), F(15)
  • Nibble = 4 bits, Word = depends on processor (16/32/64 bits)
  • 1 Petabyte = 1024 TB — used to describe internet-scale data
  • Binary 1010 = Decimal 10 (memorize small conversions for quick solving)
Key formulas
Binary to Decimal
Each bit position = 2^position (right to left starting from 0), add up values where bit = 1
When: When asked to convert binary number like 1011 to decimal
Storage Units Chain
Bit < Nibble(4) < Byte(8) < KB(1024B) < MB < GB < TB < PB < EB
When: For any question asking which unit is larger or storage conversions
Worked examples

Convert binary 1101 to decimal: 1x2^3 + 1x2^2 + 0x2^1 + 1x2^0 = 8+4+0+1 = 13

How many KB in 2 MB? 2 x 1024 = 2048 KB

Input and Output Devices

Input devices send data INTO the computer. Output devices bring processed data OUT. Some devices do both (touch screen, modem). IBPS RRB PO loves asking whether a specific device is input, output, or both — especially for tricky ones like plotter, scanner, and modem.

  • Input: Keyboard, Mouse, Scanner, Microphone, Joystick, OMR, OCR, MICR, Barcode Reader, Webcam
  • Output: Monitor, Printer, Plotter, Speaker, Projector
  • Both (Input+Output): Modem, Touch Screen, Hard Disk (can read and write)
  • MICR (Magnetic Ink Character Recognition) is used in bank cheques — very relevant for RRB
  • OMR is used in multiple choice answer sheets (like your own IBPS OMR sheet)
  • Plotter is an output device used to print large engineering/architectural drawings
⚠ Common mistakes to avoid
  • Confusing RAM and ROM: Students say ROM is temporary — it is NOT. ROM is permanent (stores BIOS). RAM is temporary.
  • Thinking 1 KB = 1000 Bytes: In computing, 1 KB = 1024 Bytes (not 1000). This exact number appears in conversion questions.
  • Marking Modem as only output: Modem is both input AND output — it sends and receives data. Same logic applies to touch screen.
  • Mixing up Supercomputer and Mainframe: Supercomputer is fastest but used for scientific research. Mainframe handles high-volume transactions (like banking). Both are large but different purposes.
  • Thinking the Control Unit processes data: CU only controls and coordinates — ALL actual processing (arithmetic and logic) is done by ALU.
🧠 Memory aids
  • Generations mnemonic: Very Tired ICs Make Amazing computers = Vacuum Tubes, Transistors, ICs, Microprocessors, AI (Gen 1 to 5)
  • CPU parts: A-C-R = ALU does Arithmetic, CU Controls, Registers are rapid tiny storage
  • RAM vs ROM: RAM = Runs And Moves (temporary, loses on shutdown). ROM = Remains On Machine (permanent, safe)
  • Storage size order: Bite (Bit) into a Nice Big Meal, Go To Paris Everyday = Bit, Nibble, Byte, MB, GB, TB, PB, EB
🎯 IBPS RRB PO exam tips
  • In IBPS RRB PO, Computer Knowledge section has 40 questions in 45 minutes. Computer Fundamentals contributes roughly 5-8 questions. Attempt it first as it is factual and fast.
  • MICR-based questions are favorite in RRB exams specifically because of the rural banking (cheque processing) connection — always remember MICR is used in bank cheques.
  • Questions on storage units often come as straightforward conversions or comparisons — memorize the 1024-based chain and you can answer in under 10 seconds.
  • Generation-of-computers questions usually ask about 1st generation (Vacuum Tubes, ENIAC) or 5th generation (AI) — middle generations are asked less frequently.
  • Number system questions in recent papers are mostly binary-to-decimal or identifying base of a number system — they rarely ask hexadecimal arithmetic, so do not over-invest time there.

Sample questions

Q1 · easy · AI-verified
What is the full form of 'WWW' in the context of the Internet?
  1. World Wide Web
  2. Web World Wide
  3. Wide World Web
  4. World Web Wide
Q2 · easy · AI-verified
A collection of related data organized in a structured format is called a:
  1. Database
  2. Directory
  3. Spreadsheet
  4. Presentation
Q3 · easy · AI-verified
Which of the following is the correct full form of RAM?
  1. Rapid Access Memory
  2. Random Analog Memory
  3. Read Access Memory
  4. Random Access Memory
Q4 · easy · AI-verified
What does the acronym 'GUI' stand for in computers?
  1. Graphical Unified Interface
  2. General User Interface
  3. Graphical User Interface
  4. Global User Interface
Q5 · easy · AI-verified
Which of the following memory is non-volatile?
  1. ROM
  2. RAM
  3. Register
  4. Cache Memory
💡 Want answers + explanations + 9+ more Computer Fundamentals questions? Sign up free →
⭐ Recommended for IBPS RRB PO aspirants

Pro 6-month

all your target exams · 6 months · unlimited mocks + AI
₹799~₹4.4/day
Sign up free, then unlockSee all plans →

More IBPS RRB PO topics

Cloze Test
24+ practice questions
Puzzles
15+ practice questions
Agricultural Credit (NABARD/KCC/PMFBY)
15+ practice questions
Sentence Improvement
15+ practice questions
Computer Abbreviations
15+ practice questions
Data Interpretation
15+ practice questions

Free practice, AI explanations, 24 exams — all in one app

Daily 10-Q quiz · AI doubt solver in Hindi + English · adaptive mocks · 4,150+ verified PYQs.

Sign up freePricingTry Daily 10-Q