Number Systems And Binary Flashcards
What are the two binary digits?
0 and 1
What is the largest binary number that can be stored in 8 bits?
255 in decimal (binary: 11111111
).
What is the binary representation for the decimal number 134?
10000110
(128 + 4 + 2).
Convert the binary number 011
to decimal.
3
Convert the binary number 0110
to decimal.
6
Convert the binary number 1001
to decimal.
9
Convert the binary number 1010
to decimal.
10
Convert the decimal number 5 to binary.
0101
Convert the decimal number 7 to binary.
0111
Convert the decimal number 26 to binary.
0011010
What do binary fractions use after the binary point?
Positions (e.g., 0.5, 0.25).
What is the binary representation for 136.75?
10001000.11
(128 + 8 + 0.5 + 0.25).
What is a mixed number in binary?
Uses fixed bits for integers and fractions.
What does 110011.01
equal in decimal?
51.25
How to represent -5 in binary (using 8 bits)?
Convert 5 to binary: 00000101
, flip the bits: 11111010
, add 1: 11111011
.
How to represent -66 in binary (using 8 bits)?
Start with positive 66: 01000010
, flip the bits: 10111101
, add 1: 10111110
.