Computer Mathematics (obj 1.7) Flashcards
(14 cards)
What numbering system do computers use?
Binary (base-2) numbering
What numbering system do humans typically use?
Decimal (base-10) numbering
How are binary numbers converted to decimal?
By summing the powers of 2 for each digit
What does each digit in a binary number represent?
A power of 2, starting from 0
Convert the binary number 10010110 to decimal.
150
What is the sum of the values of positions with 1 in the binary number 10010110?
128 + 16 + 4 + 2
How are decimal numbers converted to binary?
By repeatedly dividing by 2 and noting remainders
Convert the decimal number 167 to binary.
10100111
What is the first step in converting 167 to binary?
Subtract the highest power of 2 possible
What is the binary representation of 167?
10100111
How can you verify the conversion from binary to decimal?
By adding up the decimal values corresponding to the 1s in the binary representation
True or False: In binary, 1 indicates absence and 0 indicates presence.
False
Fill in the blank: To ensure accuracy in conversion, check the result by _____ the conversion process.
reversing
What is the decimal equivalent of the binary number 10100111?
167