addition B binary binary number 11011
gurupurti78pebgyy:
please give
Answers
Answered by
3
B-> decimal->12->binary->01100(5 bits repersentation)
binary addition rule....
S.no bit1 operator bit2 sum carry
- 1 + 0 1 0
- 0 + 1 1 0
- 1 + 1 0 1
- 0 + 0 0 0
coming to question
0 1 1 0 1 1
0 0 1 1 0 0
______
1 0 0 1 1 1
so for these sum we required minimum 6-bits otherwise last bit will be discarded...
so we have to do like this....
011011
001 100
______
1001 1 1
Similar questions