Binary, Hexidecimal, Bytes And Words Flashcards
Two states a memory location can be in
1 and 0
What does bits stand for
Binary digITS
What are bits
The fundamental unit of data storage in a computer
How many bits make up a byte
8 bits
What are bytes
The smallest addressable units of memory storage
To what base is the decimal number system
10
What are the digits in the decimal number system,
0-9
What is the most significant number in a number that contains multiple digits
The leftmost digit
What is the least significant digit in a number which has multiple digits
The rightmost digit (@x10^0)
To what base is the binary numeral system
Base 2
Why is the decimal numeral system to the base 10
Because there are 10 possible digits that we can use
Why is the binary numeral system to the base 2
Because there are 2 possible digits that can be used
how to convert a binary number to it’s decimal equivalent
for each digit, muktiply it by 2^x, x being the position it holds in the number
how to convert a decimal to its binary equivalent
divide by two and keep the remainder, keep dividing the answer by 2, read the remainders upwards
to what base is the hexidecimal numeral system
16
what are the 16 symbols in hexadecimal
0,1,2,3,4,5,6,7,8,9,A.B.C.D.E.F
why is hexadecimal system useful
16 is a power of 2, so one hex digit corresponds to exactly 4 bits, making conversion easy
decimal 0 in binary
0000
decimal 1 in binary
0001
decimal 2 in binary
0010
decimal 3 in binary
0011
decimal 4 in binary
0100
decimal 5 in binary
0101
decimal 6 in binary
0110
decimal 7 in binary
0111
decimal 8 in binary
1000
decimal 9 in binary
1001
decimal 10 in binary
1010