Binary Flashcards

(25 cards)

1
Q

What number system do we use?

A

Denary

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

What are the digits of denary?

A

0,1,2,3,4,5,6,7,8,9

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

What number system do computers use?

A

Binary

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

What are the digits for binary?

A

0,1

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

What is the binary number system?

A

It’s the number system used by computers, using only two digits: 1 and 0. The 1 means “on” and the 0 means “off”.

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

What is 1 bit?

A

One bit is a single binary digit, like a switch that is either on or off.

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

How many bits are in 1 byte?

A

1 byte = 8 bits

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

How many bits are in 1 nibble?

A

1 nibble = 4 bits

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

What is 1 kilobyte (kB) equal to?

A

Binary: 1 kB = 1024 bytes
Decimal (simplified): 1 kB = 1000 bytes

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

Complete this data size scale (simplified)
1 kB = ? bytes
1 MB = ? kB
1 GB = ? MB
1 PB = ? GB

A

1 kB = 1000 bytes
1 MB = 1000 kB
1 GB = 1000 MB
1 PB = 1000 GB

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

What are the basic binary addition rules?

A

0 + 0 = 0
1 + 0 = 1
1 + 1 = 10 (0 carry 1)
1 + 1 + 1 = 11 (1 carry 1)

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

What are the basic binary subtraction rules?

A

0 − 0 = 0
1 − 0 = 1
1 − 1 = 0
0 − 1 = 1 (borrow 1 from the next digit)

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

What is another easier but longer way to add and subtract binary?

A

Convert to denary, calculate and convert back to binary.

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

What is 1010 + 0110 in binary?

A

10000

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

What is 1011 − 0101 in binary?

A

0110

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

Convert 1010 to denary

A

(1×8) + (0×4) + (1×2) + (0×1) = 10

17
Q

Convert 1101 to denary

A

(1×8) + (1×4) + (0×2) + (1×1) = 13

18
Q

Convert 10011 to denary

A

(1×16) + (0×8) + (0×4) + (1×2) + (1×1) = 19

19
Q

Convert 7 to binary

A

7 ÷ 2 = 3 R1
3 ÷ 2 = 1 R1
1 ÷ 2 = 0 R1
→ 111

20
Q

Convert 18 to binary

A

18 ÷ 2 = 9 R0
9 ÷ 2 = 4 R1
4 ÷ 2 = 2 R0
2 ÷ 2 = 1 R0
1 ÷ 2 = 0 R1
→ 10010

21
Q

Convert 25 to binary

A

25 ÷ 2 = 12 R1
12 ÷ 2 = 6 R0
6 ÷ 2 = 3 R0
3 ÷ 2 = 1 R1
1 ÷ 2 = 0 R1
→ 11001

22
Q

What is 1011 + 0101 in binary?

23
Q

What is 110 + 11 in binary?

24
Q

What is 1101 − 0100 in binary?

25
What is 1010 − 0011 in binary?
0111