Please enable JavaScript.
Coggle requires JavaScript to display documents.
2.6 Data Representation (Binary (Binary shifts (Left shift (for every…
2.6 Data Representation
Compresssion
-
Lossless
file size reduces, quality stays the same
Pros and Cons
Only small reduction in file size. Lossless song fille has a file size around 30MB whilst the same lossy will have a file size of 5MB
-
-
-
Data compression is where we make files smaller whilst trying to keep the file contents the same to the original.
Uses of Compression
-
-
-
Email services usually have a limit that can be sent, so sending a compressed file means you can send the same content without having restrictions
bit map
-
-
Metadata is the data of the time, date and what device the photo was taken from
sounds
-
Then, converted into digital by a converter.
The higher the sample rate and the larger the amplitude, the higher the quality of sound and the larger the file size
Binary
-
-
Binary shifts
Left shift
for every place shifted, the number is doubled
-
Right shift
For every place shifted, the number is halved
-
-
-
-
Characters
ASCII, Extended ASCII and Unicode
-
-
Hexadecimal
Base-16
A:10, B:11, C:12, D:13, E:14, F:15
Converting HEX to DEN
In hex, moving right from left, place values increase in powers of 16
-
Using the order above, the HEX number 87 would be 135 in denary
As it is only 2 digits, you would multiply the first digit "8", by 16. Then the next digit, "7", which correlates with "1" in the HEX order above. So (168)+(17) = 135
-
-