What is Mass-Storage Structure?
hard disks and SSDs, which are used to store large amounts of data permanently
types of storage devices?
What is a HDD
Hard Disk Drive
What is Disk Structure?
What is Seek Time?
Seek time is the time required for the disk arm to move to the desired track.
What is Disk Scheduling?
Disk scheduling is the method of deciding the order in which disk I/O requests are serviced.
What are Disk Scheduling Algorithms?
What is RAID?
RAID (Redundant Array of Independent Disks)
What is Disk Formatting?
Disk formatting prepares a disk for data storage by dividing it into sectors and tracks.
What is Free Space Management?
It is the method of tracking available storage space on a disk using techniques like bitmaps and linked lists.
What is Disk Partitioning?
partitioning divides a disk into multiple logical sections for better management and organization.
What is Swap Space?
Swap space is a portion of disk used as an extension of RAM when memory is full.
Storage Caching
faster memory to improve performance.
Disk Reliability
data safety using techniques like RAID and backups.
secondary storage device?
Hard Disk
The smallest unit of data on a disk is called
Sector
Seek time refers to
Time to move disk arm
which technique improves disk performance?
Caching
Method used to track unused disk space.
What is Free Space Management?
This algorithm moves like an elevator servicing requests in one direction.
What is SCAN?
This problem occurs when multiple processes access shared data without synchronization.
What is a Race Condition?
This is the total time required to access data from disk, including seek time, rotational latency, and transfer time.
What is Disk Access Time?
his algorithm is an improved version of SCAN that only goes as far as the last request in each direction.
What is LOOK?
if a disk scheduling algorithm always selects the nearest request, it may lead to this problem for far requests.
What is Starvation?
his method of free space management uses a vector of bits to represent free and allocated blocks.
What is Bitmap (Bit Vector)?