Binary/Hex/Logic Gates Flashcards

1
Q

How many bytes in a Kilobyte ?

A

1000 bytes.

Computers associate kilobyte with 1024.

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

How many bytes in a Megabyte

A

About 1 Million bytes.

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

How many bytes in a Gigabyte

A

About 1 Billion bytes

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

How many bytes in a Gigabyte ?

A

About a Billion bytes

1000 Megabytes

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

How many bytes in a Terabyte

A

About 1 trillion bytes.

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

Binary Subtraction

A

Take the twos compliment first by reversing all the 1’s and 0’s on the second number
then add 1 to this number.
Finally add the two numbers together.

Don’t carry the last 1 to make it a 9-bit number.

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

Binary 1 + 1 =

A

0 carry the 1

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

Binary 1 + 1 + carried 1 =

A

1 carry the 1

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

AND Gate rule

A

You only get an output if both the inputs are 1.

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

OR Gate rule

A

You get an output if any of the inputs are 1

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

NOT Gate

A

You put in a 1, you get a 0

You put in a 0, you get a 1

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

NAND Gate rule

A

Opposite of an AND Gate.

Get an output with everything except two 1’s

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

NOR Gate

A

Opposite of an OR Gate

Only get an output with two 0’s

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

XOR Gate

A

Exclusive OR gate

You only get an output if both the inputs are different

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

1000 what make a Megabyte

A

1000 Kilobytes

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

1000 what make up a Gigabyte ?

A

1000 Megabytes

17
Q

1000 what make up a Terabyte ?

A

1000 Gigabytes

18
Q

Decimal to Hex conversion

A

Divide the Decimal number by 16

Add up the remainders

19
Q

Hex to decimal

A

Times by 4096, 256 , 16 , and 1

20
Q

Binary to Hex

A

Split the binary number into 4 bit bytes. add up the 8,4,2,1 columns to get a Hex number

21
Q

Hex A in decimal

A

10

22
Q

Hex B in decimal

A

11

23
Q

Hex C in decimal

A

12

24
Q

Hex D in decimal

A

13

25
Q

Hex E in decimal

A

14

26
Q

Hex F in decimal

A

15

27
Q

Hex to binary

A

Work out the 4 bit binary number for each Hex character.

28
Q

Decimal to Binary

A

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