2.1 Units And Binary Numbers Flashcards

You may prefer our related Brainscape-certified flashcards:
1
Q

What is binary

A

A base 2 number system. It has 2 states power on = 1, power off = 0

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

How is data stored on a computer?

A

Data such as images, text files etc., are stored in binary

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

1 bit

A

Single 0 or 1

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

1 byte

A

8 bits (1 char of text)

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

1 nibble

A

4 bits or half a byte

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

1 kB

A

1000 bytes

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

1 MB

A

1000 kB

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

1 GB

A

1000 MB

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

1 TB

A

1000 GB

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

1 PB

A

1000 TB

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

Give the order of size of bytes

A
  • Kilo
  • Mega
  • Giga
  • Tera
  • Peta
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

How much space does 2 char of text take?

A

1 byte

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

How much space does a full page of text take?

A

30 kB

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

How much space does a small digital colour take?

A

3 MB

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

How much space does a Music CD have?

A

650 mB

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

DVD Capacity

A

4.5GB

17
Q

Hard disk capacity

A

1 TB

18
Q

How do you work out the combination of number of bits

A

2^n

19
Q

What base is denary?

A

10

20
Q

What base is binary?

A

Base 2

21
Q

In a byte of data which bit is the most significant?

A

The MSB is the bit furthest to the left. In a byte the MSB has a value of 128

22
Q

In a byte of data which bit is the least significant

A

The LSB is the bit furthest to the right.

23
Q

Convert 28 into binary in 1 byte

A

00011100

24
Q

What is the largest value that can be stored in a byte?

A

255

25
Q

How do you calculate the largest value with a certain amount of bits being n?

A

2^n-1