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.