Chapter Three - Data Representation Flashcards

1
Q

Data vs. Information?

A
  • data: facts, values
  • information: data that is organized so that it is USEFUL
  • e.g. phone records; getting the evidence you need from the phone records;
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Data compression?

A
  • REDUCING SPACE needed to STORE DATA
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Bandwidth?

A
  • # of BITS/BYTES that can be TRANSMITTED from ONE PLACE to ANOTHER in GIVEN AMOUNT of TIME.
  • kind like the speed limit/traffic congestion
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Compression ratio?

A
  • SIZE of COMPRESSED DATA/SIZE of UNCOMPRESSED DATA;

e. g. compressing an image 2mb/8mb = .25

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

Lossless vs. Lossy?

A
  • Lossless: no loss of info

- Lossy: loss

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

Analog vs. Digital?

A
  • analog: CONTINUOUS representation of data (e.g. mercury thermometer)
  • digital: DISCRETE representation of data (computers)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Digitize?

A
  • act of BREAKING INFORMATION DOWN into DISCRETE PIECES (e.g. taking photo with digital camera)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Pulse-code modulation?

A
  • digital signals that jump sharply between TWO EXTREMES (e.g. phone -> electronic signals transferring binary data)&raquo_space; can degrade but information isn’t lost; when signal is too weak, RECLOCK.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Reclock?

A
  • REASSERTING an original DIGITAL signal before it becomes TOO DEGRADED.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Signed-magnitude representation?

A
  • used in GRADE SCHOOL;
  • sign (+/-) represents the ordering of the number and value represents the magnitude (visualize the linear graph w/ 0 in the middle)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Ten’s complement?

A
  • representation of NEGATIVE numbers where it is raised to 10 (or something…will watch Khan’s youtube video)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Overflow?

A
  • situation where value CANNOT FIT in # of digits reserved for it. (not enough bits; e.g. 8 bits -> 257)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Radix point?

A
  • DOT that separates WHOLE PART from FRACTIONAL PART; (decimal point in base other than 10)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Floating point?

A
  • how values are represented in computer;

|&raquo_space; (e.g. -15,500)keeps track of SIGN (+/-), MANTISSA (155), and EXPONENT(10^2);

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

Scientific notation?

A
  • You know what this is»12001.3 = 1.20013E+4 Form of floating point representation.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Character set?

A
  • LIST of characters and CODES used to represent each one (e.g. ASCII & Unicode)
17
Q

Keyword encoding?

A
  • replacing a frequently used WORD with a single character (e.g. as = ^; must = &); compression ratio approx .9
18
Q

Run-length encoding?

A
  • replacing long series of REPEATED CHARACTERS with aCOUNT of the repetition&raquo_space; DNA sequences;
  • e.g. AAAAAAA&raquo_space; *7A; compression ratio approx .7
19
Q

Huffman encoding?

A
  • VARIABLE-LENGTH BINARY STRING to represent frequently used character; e.g. A > 00; D&raquo_space; 1011 (like scrabble!) compression ratio approx .4
20
Q

Vector graphics?

A
  • image representation in terms of LINES & SHAPES
21
Q

Video codec?

A
  • methods used to SHRINK the size of a video (almost all are lossy); uses temporal and spatial compression.
22
Q

Temporal compression?

A
  • compression based on DIFFERENCE between consecutive FRAMES (if no change b/w frames, doesn’t waste space by duplicating same information)
23
Q

Spatial compression?

A
  • groups PIXELS into BLOCKS that have the SAME COLOR (e.g. portion of blue sky)