Units Flashcards

1
Q

Computers use 1s and 0s for what?

A
  • to represent the flow of electricity
  • 1 is sued to show that electricity is flowing
  • 0 shows that it’s not flowing
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is a bit (b)?

A

A single binary digit (1 or 0)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is a nibble?

A

4 bits

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is a byte (B)?

A
  • 8 bits

- enough to store one character

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is a kilobyte (kB)?

A
  • 1000 bytes

- most files (e.g. songs, pictures and documents) are measured in kB or MB

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is a megabyte (MB)?

A
  • 1000 kilobytes

- most files (e.g. songs, pictures and documents) are measured in kB or MB

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is a gigabyte (GB)?

A
  • 1000 megabytes

- high definition videos and complex applications are often measured in gigabytes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is a terabyte (TB)?

A
  • 1000 gigabytes
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is a petabyte (PB)?

A
  • 1000 terabytes
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Secondary storage capacity is normally measured in what?

A

gigabytes or terabytes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

If each bit can take two values how man values can a nibble take? How many values can a byte take?

A
nibble = 4 bits = 2 to the power of 4 == 16 different values
byte    = 8 bits = 2 to the power of 8 == 256 different values
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What are check digits?

A
  • a way of checking if data has been entered and read correctly
  • they are digits added to the end of numbers (e.g. ISBNs on books) and are calculated using the other digits in the number.
  • if the check digit is correct when data is read, then it’s likely the data has been read/entered correctly.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is a check digit called in binary data?

A

A parity bit

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What is an even parity bit?

A
  • added to make a binary string have an even number of 1s
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What is an odd parity bit?

A
  • added to make a binary string have an odd number of 1s.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What happens if one bit of the binary string is read incorrectly?

A

The computer will pick up an error. e.g. if an even parity bit is used and 10101101 is read.

17
Q

What happens if two bits within the same binary string are read incorrectly?

A

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.