1/33
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai |
|---|
No analytics yet
Send a link to your students to track their progress
How many bits is a nibble?
4 bits
How many bits is a byte?
8 bits
Kibibyte
210 = 1024
Mebibyte
220
Gibibyte
230
Tebibyte
240
Pebibyte
250
Exibyte
260
Zebibyte
270
Yobibyte
280
Kilobyte
103
Megabyte
106
Gigabyte
109
Terabyte
1012
Petabyte
1015
Exabyte
1018
Zettabyte
1021
Yottabyte
1024
How many bits did ASCII use?
7 bits
How would Cat be stored with ASCII? A=065, a=097, z=122
C: 067
a: 097
t: 116
Why is the number character not the same as the actual number value? e.g ‘7’ and 7?
Because the ASCII value of ‘7’ is 55, not 7, therefore 7 + '7' = 62 and not 14.
Why was Unicode introduced?
To provide a universal character encoding standard that could represent characters from all the world's writing systems in a single standard.
How was compatibility with ASCII and Unicode maintained?
The first 128 codes remained the same in Unicode as ASCII.
How many bits does UTF-16 encoding use?
16 bits.
What’s a disadvantage of using Unicode?
Increased file size
Increased transmission time
What’s a parity bit?
An additional bit that is used to check that the other bits transmitted are likely to be correct.
How does odd parity determine if the received bits are likely to be correct?
There should be odd number of 1s including the parity bit.
How does odd parity determine if the received bits are likely to be correct?
There should be even number of 1s including the parity bit.
What should the parity bit set to for 0010110 using odd parity?
0
How does majority voting work?
Each bit is sent three times.
If a bit value is changed during transmission, the recipient would use the majority rule
and assume that the other two bits have not changed and therefore correct
What’s a disadvantage of majority voting?
Triple the volume of data is sent.
How could a parity bit system potentially fail?
If two bits are flipped erroneously during transmission, the total number of 1s will still be even/odd.
How does a checksum detect errors?
A mathematical algorithm is applied to a unit of data which creates a checksum value
Checksum value transmitted with the unit of data
Same algorithm applied on recipient device on received data
If checksums are the same, data has been transmitted correctly
How does a check digit detect errors?
A mathematical algorithm is applied to all digits except the check digit, producing a calculated value
This value is compared to the check digit (the last digit)
If they match, no error is detected; if they differ, an error has occurred and the data is rejected