convert the following binary arithmetic

75+45

1 answer

Binary representation of 75 = 1001011
Binary representation of 45 = 101101

To perform addition in binary, we follow the same rules as in decimal arithmetic.

1001011
+ 101101
---------
10110000

Therefore, 75 + 45 in binary is equal to 10110000.