Explanation
Solution
Concept:
Step-by-Step Calculation:
-
Given Binary Number:
-
Find 1's Complement (Invert bits):
-
Find 2's Complement (Add 1 to LSB):
\begin{array}{r@{\quad}c@{\quad}c@{\quad}c@{\quad}c} & 1100 & 1010 & 0110 & 0011 \\ + & & & & 1 \\ \hline & 1100 & 1010 & 0110 & 0100 \end{array}
Short Trick:
Start from the right (LSB) and keep all bits the same until you encounter the first '1'. Keep that '1' as it is, and then invert all the remaining bits to the left.
Conclusion:
The 2's complement of the given number is 1100 1010 0110 0100.