Podcast
Questions and Answers
We start by adding the two ______ and write down the result in the sum column.
We start by adding the two ______ and write down the result in the sum column.
LSBs
The remainder of the sum is written down in the ______ column.
The remainder of the sum is written down in the ______ column.
sum
An ______ error occurs when the result of a binary addition exceeds the maximum value that can be represented.
An ______ error occurs when the result of a binary addition exceeds the maximum value that can be represented.
overflow
In the case of 8-bit, the maximum value that can be represented is ______.
In the case of 8-bit, the maximum value that can be represented is ______.
Signup and view all the answers
To avoid ______ errors, it's important to check the result of binary addition.
To avoid ______ errors, it's important to check the result of binary addition.
Signup and view all the answers
You can convert your binary numbers to ______, then perform the calculation and then convert them back to check you've got the right answer.
You can convert your binary numbers to ______, then perform the calculation and then convert them back to check you've got the right answer.
Signup and view all the answers
When adding binary numbers, the process is similar to adding ______ numbers.
When adding binary numbers, the process is similar to adding ______ numbers.
Signup and view all the answers
The binary adding rules state that 0+0 equals ______.
The binary adding rules state that 0+0 equals ______.
Signup and view all the answers
When adding binary numbers, the least significant bit (LSB) is on the ______.
When adding binary numbers, the least significant bit (LSB) is on the ______.
Signup and view all the answers
If the sum of the bits is 2 or greater, you write the ______ of the sum in the sum column.
If the sum of the bits is 2 or greater, you write the ______ of the sum in the sum column.
Signup and view all the answers
The final step in adding binary numbers is to check that the sum fits within ______ bits.
The final step in adding binary numbers is to check that the sum fits within ______ bits.
Signup and view all the answers
If the sum of the last two bits produces a carryover, you add an additional ______ to the left of the sum.
If the sum of the last two bits produces a carryover, you add an additional ______ to the left of the sum.
Signup and view all the answers
Shifting the binary number to the ______ by two positions, is dividing it by 22, or 4.
Shifting the binary number to the ______ by two positions, is dividing it by 22, or 4.
Signup and view all the answers
The result of shifting 11001100 to the left by two positions is equal to ______ times the original value.
The result of shifting 11001100 to the left by two positions is equal to ______ times the original value.
Signup and view all the answers
To convert a positive number to a two's complement 8-bit integer, first represent the number in binary form with leading ______ until it is 8 bits long.
To convert a positive number to a two's complement 8-bit integer, first represent the number in binary form with leading ______ until it is 8 bits long.
Signup and view all the answers
When converting a negative number to a two's complement 8-bit integer, you must ______ all the bits in the binary representation of the positive equivalent of the number.
When converting a negative number to a two's complement 8-bit integer, you must ______ all the bits in the binary representation of the positive equivalent of the number.
Signup and view all the answers
To check your binary conversion answer, you should convert the binary number to ______ and work out your answer.
To check your binary conversion answer, you should convert the binary number to ______ and work out your answer.
Signup and view all the answers
The leftmost bit in a two's complement representation represents the ______ of the number.
The leftmost bit in a two's complement representation represents the ______ of the number.
Signup and view all the answers