Storing Data on a Computer Flashcards

1
Q

HDD

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

File System

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Formatting (Storing Data)

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Partition (Storing Data)

A

A section of a disk. Some disks may only have one.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Track (Storing Data)

A

A part of a disk partition which contains data, sometimes called a ring.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Sector (Storing Data)

A

A part of a disk track, numbered and all of equal size.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Cluster (Storing Data)

A

A collection of one or more sectors of a track. During writing, the needed number of clusters are allocated.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

FAT

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

NTFS

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

MFT

A

Master File Table - a table of cluster indexes and whether they are in use, used by NTFS.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Unallocated Space (Storing Data)

A

The space on a disk available for data to be stored in.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Logical Size

A

The measure of the number of bytes a file can actually contain.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Physical Size

A

The measure of the maximum number of bytes a file can contain, though this can practically almost never be met.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Slack Space

A

The difference in physical and logical size.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Latent Data

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Overwriting (Storing Data)

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

Degaussing

A

The use of a powerful magnetic field to erase all data on a hard disk. It is expensive, but disks can be re-used once wiped.

18
Q

Fragmentation

A

A process which involves writing clusters elsewhere on a disk when there is insufficient space, thus slowing performance.

19
Q

Defragmentation

A

A process where clusters located in different tracks not adjacent to each other are rearranged to make disk reading faster.

20
Q

SSD

A

Solid State Drive - a form of memory which contains an integrated circuit to store data. The type of memory it uses is known as flash memory. It is often used in USB sticks or as an alternative to HDD. Data is split into clusters and logical sectors similarly to HDD, though SSD is less fragile, faster, has a longer battery life, and keeps consistent performance after fragmentation - for a higher price.

21
Q

Flash Memory

A

A solid-state chip that maintains stored data without requiring an external power source, used in SSDs. They consist of numerous electrically insulated boxes which act as memory cells. When a charge is applied, electrons give it a slight negative charge, and are stored even when powered off. Over time, insulation degrades, making it unusable.

22
Q

Wear Levelling

A

A function performed by software that controls where files are saved. It ensures that each time a file is changed, it is written to a differing location selected at random to minimise wear on insulation.

23
Q

TRIM

A

An SSD control software that uses time to locate and initialise unreferenced file fragments and empty space for overwriting.

24
Q

ATA Secure Erase

A

An SSD control software that resets memory by applying a strike of voltage.

25
Q

Write Blocker

A

A piece of software that makes a disk read-only as not to damage or change the contents.

26
Q

Hash Code (Storing Data)

A

A value calculated from the 0s and 1s on a disk. The hash code from an original disk and disk image should match to ensure the copy is completely true and forensically sound. One method of finding a hash code essentially sums the ASCII representations of values on a disk multiplied by a weight, sometimes finding the modulus to shorten this number.

27
Q

Disk Image

A

A copy of the contents of a disk.

28
Q

Dead System Imaging

A

The process of copying the contents of a disk to a disk image, essentially removing a hard disk from a switched off computer.

29
Q

Hash Code Collision (Storing Data)

A

The occurrence of two or more generated hash codes, originating from different files, being identical. Hash code algorithms are often designed to minimise these.

30
Q

Image Mounter

A

A software that allows the OS to read (and write, if needed) to a disk image.

31
Q

Metadata

A

Data that gives information about a file, such as name, size, path, timestamps, and file type. Timestamps give information on when a file was created, modified, or deleted.

32
Q

System Log

A

A log file of events on a device, such as logins, system changes, and more.

33
Q

Soft Delete

A

A method of deleting an object by moving it to the ‘recycle bin’, so that it is not fully removed. This creates a $I file, which contains metadata, and $R file. The $I file can be used to locate data using offsets.

34
Q

Hard Delete

A

A method of deleting an object by emptying the recycle bin, removing the $I file and all references to the $R file.

35
Q

Magic Number (Storing Data)

A

A set of bits in the header of a file that indicate the type of file.

36
Q

Hex Editor

A

A software that can read and manipulate binary data in a file.

37
Q

File Carving Software

A

A form of software that finds a file format from a database of magic numbers (and, additionally, checks the contents of the file to ensure they match with the expected type) before locating the footer and using this to recover the file as intended. It is sometimes known as data carving software.

38
Q

RAM Dump

A

A file containing all information stored on a system before a major process.

39
Q

Munge

A

An alphabetic character replaced by a special character (such as ‘a’ for ‘@’).

40
Q

Registry Hive

A

A space within the registry area (used to store lowest-level OS settings) created each time a user logs on to a computer that stores information about their profile, settings, desktop, and more.

41
Q

Enhanced Metafile

A

A file representing an image to be printed. A file carver software can extract data from it.

42
Q

Steganography

A

A method of hiding data within other data so that it cannot be easily detected. One method of steganography involves changing the last two bits of every byte to encode a message.