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;
2
Q
Data compression?
A
- REDUCING SPACE needed to STORE DATA
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
4
Q
Compression ratio?
A
- SIZE of COMPRESSED DATA/SIZE of UNCOMPRESSED DATA;
e. g. compressing an image 2mb/8mb = .25
5
Q
Lossless vs. Lossy?
A
- Lossless: no loss of info
- Lossy: loss
6
Q
Analog vs. Digital?
A
- analog: CONTINUOUS representation of data (e.g. mercury thermometer)
- digital: DISCRETE representation of data (computers)
7
Q
Digitize?
A
- act of BREAKING INFORMATION DOWN into DISCRETE PIECES (e.g. taking photo with digital camera)
8
Q
Pulse-code modulation?
A
- digital signals that jump sharply between TWO EXTREMES (e.g. phone -> electronic signals transferring binary data)»_space; can degrade but information isn’t lost; when signal is too weak, RECLOCK.
9
Q
Reclock?
A
- REASSERTING an original DIGITAL signal before it becomes TOO DEGRADED.
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)
11
Q
Ten’s complement?
A
- representation of NEGATIVE numbers where it is raised to 10 (or something…will watch Khan’s youtube video)
12
Q
Overflow?
A
- situation where value CANNOT FIT in # of digits reserved for it. (not enough bits; e.g. 8 bits -> 257)
13
Q
Radix point?
A
- DOT that separates WHOLE PART from FRACTIONAL PART; (decimal point in base other than 10)
14
Q
Floating point?
A
- how values are represented in computer;
|»_space; (e.g. -15,500)keeps track of SIGN (+/-), MANTISSA (155), and EXPONENT(10^2);
15
Q
Scientific notation?
A
- You know what this is»12001.3 = 1.20013E+4 Form of floating point representation.
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»_space; DNA sequences;
- e.g. AAAAAAA»_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»_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)