Fundamentals of Data Representation Flashcards

1
Q

Integer Numbers

A

Set of whole numbers, including positive and negative and zero

Z

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

Rational Numbers

A

Set of integer numbers but can contain fractional parts

Q

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

Irrational Number

A

Numbers which cannot be written as an exact fraction

No Symbol

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

Real Numbers

A

All possible real world quantities

R

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

Ordinal Numbers

A

Describe the numerical position of an object in relation to others

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

Kibibyte in Bytes

A

2^10

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

Mebibyte in Bytes

A

2^20

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

Gibibyte in Bytes

A

2^30

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

Tebibyte in Bytes

A

2^40

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

Kilobyte in Bytes

A

10^3

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

Megabyte in Bytes

A

10^6

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

Gigabyte in Bytes

A

10^9

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

Terabyte in Bytes

A

10^12

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

Unsigned Binary Numbers

A

Only represent positive numbers

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

Signed Binary Numbers

A

Allow for the representation of negative numbers

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

Absolute Error with Equation

A

Actual amount by which a value is inaccurate

Difference between the values

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

Relative Error with Equation

A

The measure of uncertainty between a given value compared to the actual value relative to the size of the given value

Relative Error = Absolute Error / Actual Value

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

Underflow Error

A

When numbers are too small to be represented with bits available

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

Overflow Error

A

When numbers are too large to be represented with bits available

20
Q

ASCII

A

Character set which can represent alphanumeric characters or symbols as a set of 8 bits (128 different characters)

21
Q

Unicode

A

Character set which includes more characters and symbols than ASCII as a set of 8 bits

22
Q

Parity Bit

A

Single bit which is added to a transmission of data in order to check for errors. Even and odd parity (Counts number of 1s)

23
Q

Majority Voting

A

Error checking technique where each bit of the data is transmitted multiple times where the most occurring value is taken, can check and correct the error

24
Q

Checksums

A

Error checking technique where a piece of data is added to the block of data in order to enable error detection

25
Q

Check Digit

A

Type of checksum where a single digit is added to the transmission

26
Q

Bitmap Graphics

A

Images are broken down into many pixels which are each assigned a binary value

27
Q

Resolution

A

The number of pixels in an image

28
Q

Colour Depth

A

Number of bits assigned to each pixel which can determine colours available

29
Q

Metadata

A

Data which is related to the image file itself, like width, height and colour depth

30
Q

Vector Graphics

A

Way of representing images using geometric shapes and objects

31
Q

Properties of Vector Graphics

A

Fill colour, fill style, line colour, dimensions…

32
Q

Vector Graphics Vs Bitmapped Graphics

A

Vector Graphics can be scaled without losing quality. Vector Graphics are better for simple images like logos but are not useful for photographs. Vector Graphics often use less storage space.

33
Q

Sampling Rate

A

Number of samples per second (Hz)

34
Q

Sample Resolution

A

Number of bits given to each sample

35
Q

Size of a Sound Sample (Equation)

A

Duration of sample (sec) x Sampling Rate (Hz) x Sampling Resolution

36
Q

The Nyquist Theorem

A

The sampling rate of an audio file must be at least twice the frequency of the sound

37
Q

Musical Instrument Digital Interface (MIDI) with examples

A

Used with electronic musical instruments which stores sound as a sequence of event messages (instructions)

Duration of note
Type of instrument
Volume of note

38
Q

Advantages and Disadvantages of MIDI

A

Music can be manipulated easily without the loss of quality, note sounds can be altered and they are often smaller in size. But, they are not good at storing speech so can sound less realistic

39
Q

Lossy Compression

A

Type of data compression where some data is lost, like reducing the sample resolution or image resolution

40
Q

Lossless Compression

A

Type of data compression where no data is lost so can be reduced without decreasing the quality like run-length encoding and dictionary based methods

41
Q

Run Length Encoding (RLE)

A

Reduces the size of file by removing repeated information by replacing it with one occurrence of value and by how much it is repeated

42
Q

Encyption

A

The process of scrambling data so it cannot be understood if intercepted

43
Q

Caesar Cipher (2 types)

A

Type of Cipher where data is encrypted by replacing each character by the same key

Shift Cipher
Substitution Cipher

44
Q

Shift Cipher

A

Type of Caesar Cipher where all characters in the alphabet are shifted by the same amount (Key)

45
Q

Substitution Cipher

A

Type of Caesar Cipher where all characters are randomly replaced

46
Q

Disadvantages of Caesar Cipher

A

Can be cracked easily as frequency that characters occur could provide a clue. When one character is discovered in a shift cipher, all characters are found, but substitution are a little harder to crack

47
Q

Vernam Cipher

A

Type of cipher where each key is only used once for each character in the plaintext. Uses the binary value of character and key and applies a XOR operation in order to get the ciphertext.