Storing Data on a Computer Flashcards
HDD
Hard Disk Drive - a storage device that consists of stacked rotating platters on a spindle. The platters are covered by small amounts of magnetic metal used to represent a 1 or 0. A head passes over the platter that can detect changes in magnetic charge in order to read and write. Hard disks can rotate at 7200 revolutions per minute, though outer areas move faster. When data is removed, it stays on the disk until it is overwritten. HDDs are fragile and slower than SSDs due to moving parts.
File System
A program run by the OS which dictates how to read and write from a disk, and stores the location of the files stored on the disk.
Formatting (Storing Data)
The process of preparing any type of disk drive so that data can be written to it. One partition of a disk will be loaded with the correct file system, and some formatting procedures can check for errors or viruses.
Partition (Storing Data)
A section of a disk. Some disks may only have one.
Track (Storing Data)
A part of a disk partition which contains data, sometimes called a ring.
Sector (Storing Data)
A part of a disk track, numbered and all of equal size.
Cluster (Storing Data)
A collection of one or more sectors of a track. During writing, the needed number of clusters are allocated.
FAT
File Allocation Table - an area on a hard disk that is used as an index for every cluster on the disk and whether it is in use.
NTFS
New Technology File System - a modern file system that uses a MFT to store the indexes of every cluster on a disk and if they are in use, similar to FAT. It is used by windows computers.
MFT
Master File Table - a table of cluster indexes and whether they are in use, used by NTFS.
Unallocated Space (Storing Data)
The space on a disk available for data to be stored in.
Logical Size
The measure of the number of bytes a file can actually contain.
Physical Size
The measure of the maximum number of bytes a file can contain, though this can practically almost never be met.
Slack Space
The difference in physical and logical size.
Latent Data
A term for data on a hard disk which has previously been ‘removed’ from the disk before being partially overwritten, sometimes known as ambient data.
Overwriting (Storing Data)
The process of filling every part of a disk with zeros or a random mix of binary to remove traces of previous data. It is also known as wiping or shredding.