Explain the procedure for adding two numbers in 1’s complement form.
If result is all zeros, it’s zero.
Otherwise, result is in 1’s complement form.
How do you identify an overflow condition when you add two numbers in 1’s complement form? Provide an example for this.
Identification:
Overflow occurs if adding two numbers with the same sign produces a result with a different sign.
Example:
Add +3 (0011) and +4 (0100) in 4-bit 1’s complement:
Answer: -6, Overflow (sign changed from + to - )
What does BCD stand for?
Binary Coded Decimal
Explain at least two important disadvantages of storing numbers in BCD format.
Offer one advantage for using a BCD format for storing numbers.
Easy Decimal Conversion:
BCD makes it simple to convert between binary and decimal, making it ideal for financial and digital display systems (e.g., calculators, digital clocks).