Binary Flashcards

1
Q

What are the 8 bit digits?

A

128, 64, 32, 16, 8, 4, 2, 1

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

What is 255 in binary

A

11111111

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

What is the denary number for 111111111

A

255

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

How do you work out the binary number

A

you take away the digits from each bit if the number is bigger than the decimal number

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

How do you work out the denary number

A

you add all the digits that have a 1

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

what are the first 4 digits in binary

A

8, 4, 2, 1

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

What are the first 6 binary digits?

A

32, 16, 8, 4, 2, 1

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

What are the units in order from smallest to largest?

A

a bit, a byte, a kilobyte, a megabyte, a gigabyte, a terrobyte

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

What are the bytes order in backwards order from biggest to smallest?

A

a terrobyte, a gigabyte, a megabyte, a kilobyte, a byte, a bit

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

what is the denary number for 10000001

A

129

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

What is the denary number for 01100011

A

99

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

What do you do if you need to carry a 1

A

carry the 1 to the next column

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

what base is hexadecimal?

A

base 16
hex- 6
decimal- 10
10+6=16

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

What is the order for base 16

A

0-0
1-1
2-2
3-3
4-4
5-5
6-6
7-7
8-8
9-9
10-A
11-B
12-C
13-D
14-E
15-F
16-G

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

what is base 2

A

1, 2, 3, 4

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

in binary shift what do you do when you x2 the binary number

A

shift it once to the left

17
Q

in binary shift what do you do when you x4 the binary number

A

shift it twice to the left

18
Q

in binary shift what do you do when you x8 the binary number

A

move the binary number 3 times to the left

19
Q

what do you put in when you shift a binary number

A

you add a zero

20
Q

what is the modules

A

the number which is the remainder and the second part of the hexadecimal nuber

21
Q

in python what can you type to find the hexadecimal number

A

print(a%16)
print(a//16)

a= the decimal/denary number

22
Q

how do you convert a decimal number into a hexadecimal number

A

divide the denary/decimal number by 16 and the the remainder is your second part of the hexadecimal number and the first number is the first part of the hexadecimal number

23
Q

how many bits are in a byte

A

8

24
Q

how many bytes are in a kilobyte

A

1024 bytes

25
Q

how many kilobytes are in a megabyte

A

1024 kilobytes

26
Q

how many megabytes are in a gigabyte

A

1024 megabytes

27
Q

how many gigabytes are in a terabyte

A

1024 gigabytes

28
Q

what base is binary

A

base 2

29
Q

in binary shift what do you do when you /8 the binary number

A

move the binary number 3x to the right

30
Q

in binary shift what do you do when you /4 the binary number

A

move the binary number 2x to the right

31
Q

in binary shift what do you do when you /2 the binary number

A

move the binary number 1x to the right