Binary and Number Systems Flashcards
What are the 2 Binary Digits?
1 & 0
What is the base of the decimal number system?
10
What is the base of the binary number system?
2
What is the decimal representation of the binary number 10000110?
134
The calculation is: 128 + 4 + 2 = 134.
What is the range of decimal values that an 8-bit integer can store?
0 to 255
What is the largest binary number that can be held in 8 bits?
11111111
What is the binary representation of the number 1 using one byte?
00000001
What is the largest number that can be held in two bytes?
65535
In binary, what is the term for the least significant bit?
LSB
In binary, what is the term for the most significant bit?
MSB
What is the binary equivalent of the decimal fraction 0.5?
.1
What is the binary equivalent of the decimal fraction 0.25?
.01
What does the binary point represent?
The position separating the whole number from the fractional part.
How do you store mixed numbers in binary?
Allocate an agreed number of bits for each side of the binary point.
What is the two’s complement method used for?
Storing negative numbers.
What is the first step in converting a negative decimal number to binary using two’s complement?
Take the non-negative number.
What is the binary representation of -66 using two’s complement?
10111010
What is the result of adding the binary numbers 00011 and 00001?
000100
True or False: In binary subtraction, the second number is converted to two’s complement before adding.
True
What is the result of binary multiplication 8 x 3?
24
How do you convert a decimal number into a binary number using the repeated division-by-2 method?
Continually divide the decimal number by 2 and record the remainders.
What is the binary equivalent of the decimal number 294?
100100110
Complete the blank: The binary representation of the decimal number 8 is ______.
00001000
What is the binary equivalent of the decimal number 89?
1011001