Computers use 1s and 0s for what?
What is a bit (b)?
A single binary digit (1 or 0)
What is a nibble?
4 bits
What is a byte (B)?
- enough to store one character
What is a kilobyte (kB)?
- most files (e.g. songs, pictures and documents) are measured in kB or MB
What is a megabyte (MB)?
- most files (e.g. songs, pictures and documents) are measured in kB or MB
What is a gigabyte (GB)?
- high definition videos and complex applications are often measured in gigabytes
What is a terabyte (TB)?
What is a petabyte (PB)?
Secondary storage capacity is normally measured in what?
gigabytes or terabytes
If each bit can take two values how man values can a nibble take? How many values can a byte take?
nibble = 4 bits = 2 to the power of 4 == 16 different values byte = 8 bits = 2 to the power of 8 == 256 different values
What are check digits?
What is a check digit called in binary data?
A parity bit
What is an even parity bit?
What is an odd parity bit?
What happens if one bit of the binary string is read incorrectly?
The computer will pick up an error. e.g. if an even parity bit is used and 10101101 is read.
What happens if two bits within the same binary string are read incorrectly?
Then no error will be detected. e.g. if an even parity bit is used and the binary string is 10100000 is read as 10000100 then no error will be picked up.