in binary addition, 1+0 equals to
Answers
Answer:
101
Explanation:
Adding 0 and 1, we get 1 (no carry). That means the last digit of the answer will be one. Then we move one digit to the left: adding 1 and 1 we get 10. Hence, the answer is 101.
hope this will help you plz mark as Brainliest answers
Answer:
In binary addition, 1+0 equals to 1
Explanation:
Binary Addition is different from decimal addition that we have learnt in our maths class.
Binary number system has only two numbers that are 0 and 1. These values are called bits.
So addition operation is applied only to these two bits.
Below table shows how to add these two bits
0 + 0 = 0
1 + 0 = 1
0 + 1 = 1
1 + 1 = 1 0 where 1 is carry
For performing the binary addition of any two binary numbers, you just have to keep this table in mind and you can easily add any two binary numbers.
#SPJ2