Key Concepts & Self-Assessment18 Key Facts
Review key RAID exam facts and rate your mastery to track revision.
Progress: 0/18 Rated 0 Mastered 0 Review Later
#1
David Patterson, Garth Gibson, and Randy Katz of UC Berkeley introduced the term RAID (originally Redundant Array of Inexpensive Disks) in their June 1988 ACM SIGMOD paper, defining levels RAID 1 through RAID 5.
#2
An operating system views a multi-disk RAID array as a single logical volume (drive letter or mount point), while a hardware RAID controller or software volume manager handles physical block distribution.
#3
RAID 0 (Block-Level Striping) requires a minimum of 2 disks, offers 100% storage space efficiency, and multiplies read/write speeds, but provides zero fault tolerance (despite the name RAID, RAID 0 is not redundant).
#4
In RAID 0, the failure of even a single physical disk destroys the entire file system across all drives in the array because chunks of every file are scattered across every disk.
#5
RAID 1 (Disk Mirroring) requires a minimum of 2 disks and writes identical copies of every block to both drives simultaneously, yielding 50% usable storage capacity () and surviving the failure of one drive.
#6
Read performance in RAID 1 can approach double that of a single disk because the controller can read different sectors from both mirrored drives concurrently, while write performance equals that of a single disk.
#7
RAID 2 (bit-level striping with Hamming code error correction) and RAID 3 / RAID 4 (byte/block striping with a dedicated single parity disk) are obsolete in modern servers because the dedicated parity drive created an I/O write bottleneck.
#8
RAID 5 uses block-level striping with Distributed Parity across a minimum of 3 disks; parity blocks are rotated evenly across all drives rather than isolated on a single parity drive.
#9
Usable capacity of a RAID 5 array with identical drives (where ) is drives; the capacity equivalent of exactly 1 drive is consumed by distributed XOR parity.
#10
Parity in RAID 5 is calculated using the Boolean Exclusive-OR (XOR, ) property: if Drive 1 stores bit , Drive 2 stores bit , and Drive 3 stores Parity , then if Drive 1 fails, its lost bit is recovered instantly via .
#11
RAID 5 survives the failure of any 1 disk without data loss; however, if a second disk fails while the array is rebuilding the replacement drive, 100% of the data is lost.
#12
RAID 6 uses block-level striping with Double Distributed Parity ( syndrome using Reed-Solomon Galois Field arithmetic) across a minimum of 4 disks.
#13
Usable capacity of a RAID 6 array with drives () is drives, and it guarantees zero data loss even when any 2 disks fail simultaneously.
#14
RAID 5 and RAID 6 suffer from a "Write Penalty" during small random writes: updating one data block requires reading the old data, reading the old parity, computing new parity, and writing both—amounting to 4 I/O operations per single write in RAID 5 and 6 I/O operations in RAID 6.
#15
RAID 10 (also written RAID 1+0) is a nested hybrid level that creates a striped array (RAID 0) across multiple mirrored pairs (RAID 1); it requires a minimum of 4 disks and provides 50% usable capacity.
#16
Compared to RAID 5/6, RAID 10 eliminates XOR parity calculation overhead and rebuilds failed drives much faster by copying straight from the surviving mirror partner rather than reading every sector of every disk in the array.
#17
Hardware RAID uses a dedicated PCIe controller card equipped with its own processor and battery-backed or flash-backed cache (NVRAM) to prevent "write hole" corruption during power outages, whereas Software RAID uses the host CPU (such as Linux mdadm, ZFS RAID-Z, or Windows Storage Spaces).
#18
Cybersecurity and systems administrators enforce the cardinal rule "RAID is NOT a Backup": while RAID protects uptime against physical hardware drive failure, it instantly replicates accidental file deletion, filesystem corruption, and ransomware encryption across all mirrored and parity disks.
Subject Specialist Commentary
Analytical perspective & practical exam advice from the Master10 academic board
RAID storage levels are a staple of IBPS/SBI Specialist IT Officer exams, GATE Computer Science, UGC-NET, and UPSC Digital Awareness questions. Candidates must memorize the minimum disk count, usable storage formula, and fault tolerance for each standard level: RAID 0 (minimum 2 disks, capacity, 0 disk failures tolerated), RAID 1 (minimum 2 disks, capacity, 1 failure tolerated), RAID 5 (minimum 3 disks, capacity, 1 failure tolerated), RAID 6 (minimum 4 disks, capacity, 2 failures tolerated), and RAID 10 (minimum 4 disks, capacity, 1 failure per mirrored pair).
A frequent conceptual question asks why enterprise administrators state that "RAID is not a backup." RAID only ensures hardware availability when a physical drive fails; if an administrator accidentally deletes a table or ransomware encrypts a file, a RAID 1 or RAID 5 controller immediately mirrors that damage across every disk in the array.
Related Knowledge Topics to Discover
Computer & Digital Awareness
What Is Cloud Computing and How Does It Work?
Explore Topic
Computer & Digital Awareness
Version Control Systems: Distributed Architecture, Git Repositories & Software Engineering
Explore Topic
Agriculture & Rural India
What Is the Decentralised Grain Storage Plan and How Does It Help Farmers?
Explore Topic
Looking for more GK practice?
Explore 52,789+ questions across 65 General Knowledge categories.