CS 2210 - Chapter 01: Data Representation

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/25

flashcard set

Earn XP

Description and Tags

Vocabulary practice flashcards covering data representation topics including number systems, MAC addresses, binary shifts, character sets, file compression techniques, and audio/image digital representations.

Last updated 5:55 PM on 9/16/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

26 Terms

1
New cards

Data

A set of information that can include numbers, text, images, and sound.

2
New cards

Denary

A number system with a base of 1010 and a sample space consisting of digits from 00 to 99.

3
New cards

Binary

A number system with a base of 22 and a sample space consisting of 00 and 11.

4
New cards

Byte

A unit of digital data representation consisting of 8bits8\,\text{bits}.

5
New cards

MAC Address

Media Access Control address; a physical address of a device used to identify the device on the network.

6
New cards

MAC Address (Manufacturer ID)

The first 24bits24\,\text{bits} (or 3bytes3\,\text{bytes}) of a MAC address that represents the manufacturer of the device.

7
New cards

MAC Address (Serial Number)

The second 24bits24\,\text{bits} (or 3bytes3\,\text{bytes}) of a MAC address that represents the serial number of the device.

8
New cards

Logical Left Shift (LLS)

A binary shift operation to the left that multiplies a number by powers of 22, which can result in an overflow error if bits shift beyond the available storage.

9
New cards

Logical Right Shift (LRS)

A binary shift operation to the right that divides a number by powers of 22.

10
New cards

Two's Complement

A method used to represent negative binary numbers by toggling all bits (010 \rightarrow 1 and 101 \rightarrow 0) and adding 11.

11
New cards

ASCII

A character encoding standard used to represent English alphabets in digital format, where capital letters range from 6565 to 9090 and small letters range from 9797 to 122122.

12
New cards

Unicode

A character encoding standard designed to represent text in multiple languages, such as Spanish or German.

13
New cards

Extended Unicode

An extension of Unicode used to represent various specialized symbols.

14
New cards

Compression

A method used to reduce the size of a digital file.

15
New cards

Lossy Compression

A file compression method where the original file cannot be reconstructed after compression (e.g., JPEG, MP3, MP4).

16
New cards

Lossless Compression

A file compression method where the original file can be fully recovered (e.g., Run Length Encoding).

17
New cards

Pixel

The smallest unit that makes up an image.

18
New cards

Colour Depth

The number of bits required to represent a colour in an image.

19
New cards

Image File Size Formula

Calculated as Image Resolution×Colour Depth\text{Image Resolution} \times \text{Colour Depth}.

20
New cards

Kilobyte (KB)

A metric unit of data size equal to 10310^3 or 1000Bytes1000\,\text{Bytes}.

21
New cards

Kibibyte (KiB)

A binary unit of data size equal to 2102^{10} or 1024Bytes1024\,\text{Bytes}.

22
New cards

Sample Rate

The number of sound samples taken per second.

23
New cards

Sample Resolution

The number of bits used per sound sample.

24
New cards

Effect of Increasing Sample Resolution

Improves sound quality, but increases file size and requires greater processing power.

25
New cards

Human Hearing Range

The frequency range of sound audible to the human ear, spanning from 20Hz20\,\text{Hz} to 20kHz20\,\text{kHz}.

26
New cards

Run Length Encoding (RLE)

A lossless compression method that stores consecutive characters along with the frequency of that character.