Siksha Sarovar

Siksha Sarovar (sikshasarovar.com) is a free educational web application that helps students in India learn programming and prepare for academic and competitive exams. The platform offers structured coding courses (C, C++, Python, Java, HTML, CSS, PHP, Power BI, AI, Machine Learning, Data Science), complete university curriculum notes for BCA/MCA students with previous year question papers, Class 10 and Class 12 CBSE/HBSE school notes, and dedicated preparation material for SSC, UPSC, Banking, Railway and other government exams. Browsing the site is completely free and requires no account. Users may optionally sign in with Google solely to save their learning progress, quiz scores and personal preferences across devices.

Privacy Policy | Terms of Service | Contact Siksha Sarovar | About Siksha Sarovar

v4.0.9 · PWA
Siksha Sarovar logo
Siksha Sarovar
Your Learning Universe

Siksha Sarovar is a free e-learning platform for coding courses, BCA university notes and competitive exam preparation. Optional Google sign-in saves your learning progress across devices.

Initializing knowledge base…
Compiling modules 0%

Unit 1: Secondary Memory & Storage Devices

Lesson 11 of 34 in the free Fundamentals of IT & Computers notes on Siksha Sarovar, written by Rohit Jangra.

Unit I — Secondary Memory & Storage Devices

Secondary memory (also called auxiliary or external storage) is non-volatile, meaning data persists even after the computer is turned off. It stores the operating system, applications, and user files permanently. It is much larger but slower than primary memory.

---

Hard Disk Drive (HDD)

  • A magnetic storage device with spinning platters coated with magnetic material.
  • Data is read/written by a read/write head that floats just above the platter surface.
  • Platters spin at 5400–7200 RPM (rotations per minute) for consumer drives.
  • Capacity: 500 GB to several TB.
  • Access time: ~5–10 milliseconds (slow compared to RAM).

HDD Key Terms:

  • Tracks — Concentric circles on the platter surface.
  • Sectors — Smallest unit of storage (traditionally 512 bytes, now 4 KB).
  • Cylinders — Same track number across all platters stacked vertically.

---

Solid State Drive (SSD)

  • Uses NAND flash memory chips (no moving parts).
  • Much faster than HDD (access time: ~0.1 ms), silent, and shock-resistant.
  • More expensive per GB than HDD.
  • Used in modern laptops, smartphones, and servers.

---

Optical Discs

TypeCapacityDescription
CD-ROM700 MBRead only; used for software distribution
CD-R700 MBWrite once, read many (WORM)
CD-RW700 MBRewritable
DVD-ROM4.7 GB (single layer)Higher density than CD
DVD-R / DVD-RW4.7 GBWritable/rewritable versions
Blu-ray Disc25–50 GBHigh-definition video storage

Optical discs use a laser beam to read/write data as pits and lands on the disc surface.

---

Flash Memory

  • A type of EEPROM that stores data in blocks.
  • USB Flash Drives (Pen Drives): Portable, plug-and-play storage (4 GB–1 TB).
  • Memory Cards: SD cards, MicroSD cards — used in cameras and phones.
  • Solid State Drives (SSDs) use the same NAND flash technology.

---

Magnetic Tape

  • Sequential access storage medium.
  • Extremely high capacity at very low cost — used for backup and archival.
  • Access is slow because data must be read sequentially.
  • Common in data centres for long-term storage.

---

Comparison Table

DeviceTypeVolatileSpeedCapacity
HDDMagneticNoSlowTB range
SSDFlashNoFastTB range
CD/DVDOpticalNoSlowMB–GB
USB DriveFlashNoModerateGB range
Magnetic TapeMagneticNoVery slowPB range
Key Takeaway: Secondary memory provides permanent, high-capacity storage. HDDs offer low cost per GB; SSDs offer high speed; optical discs are portable and read-only; flash drives offer convenience. For exams, know how each medium stores data (magnetic, optical, flash) and their key trade-offs.