Binary Flashcards

1
Q

Binary - Denary Conversion

A

Place all of the binary digits into columns, labelled from 1 to 128, going up in powers of 2 from right to left.
Where there are 1s, add the number of the column to the total until you have reached the end of the binary number.
e.g.
10011101
128 64 32 16 8 4 2 1
1 0 1 1 1 1 0 1
=128 + 32 + 16 + 8 + 4 + 1
= 189

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

Denary - Binary Conversion

A

Write out the powers of 2 from 1 to 128 from right to left.
Subtract the largest of these that can be subtracted from the number and place a one underneath each column. For any columns that cannot be subtracted from the number, place a zero. Repeat until there is a binary digit in each of the columns.
e.g.
37
128 64 32 16 8 4 2 1
0 0 1 0 0 1 0 1
= 00100101

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

Binary

A

This means base 2.
It uses only 1s and 0s.
Each binary digit is called a bit.

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

Nibble

A

4 bits

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

Byte

A

8 bits

B

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

Kilobyte

A

1000 bytes
or 8000 bits
KB

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

Megabyte

A

1000 Kilobytes
or 1 million bytes
or 8 million bits
MB

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

Gigabyte

A
1000 Megabytes
or 1 million Kilobytes
or 1,000,000,000 bytes
or 8,000,000,000 bits
GB
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Terabyte

A
1000 Gigabytes
or 1 million Megabytes
or 1,000,000,000 Kilobytes
or 1,000,000,000,000 Bytes
or 8,000,000,000,000 bits
TB
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Petabyte

A
1000 Terabytes
or 1 million Gigabytes
or 1,000,000,000 Megabytes
or 1,000,000,000,000 Terabytes
or 1,000,000,000,000,000 bytes
or 8,000,000,000,000,000 bits
PB
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Hexadecimal

A

Base 16

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

Denary - Hex Conversion

A

Divide the denary number by 16.
The integer produced is the left number.
The remainder become the right character.
For remainders 9 to 15, place a letter A to F as the right character.
For remainders 1 to 9, place the equivalent number.

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

Hex - Denary Conversion

A

Convert the right chracter to a number.
Multiply the left number by 16.
Add the converted number to the product.

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

Binary - Hex Conversion

A
Split the binary code into two nibbles.
Convert each nibble to hex value.
Rejoin the values.
e.g.
01011010
0101  1010
0101 = 5    1010 = 10 = A
5A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Hex - Binary Conversion

A
Split the two hex characters
Convert each to binary.
Rejoin the two nibbles formed.
7C
7   C
7 = 0111
C = 12 = 1100
01111100
How well did you know this?
1
Not at all
2
3
4
5
Perfectly