1.

How can i convert 43 to binary

Answer» Step 1 : Divide (43)10\xa0successively by 2 until the quotient is 0:43/2 = 21, remainder is 121/2 = 10, remainder is 110/2 = 5, remainder is 05/2 = 2, remainder is 12/2 = 1, remainder is 01/2 = 0, remainder is 1Step 2 : Read from the bottom (MSB) to top (LSB) as 101011. This is the binary equivalent of decimal number 43


Discussion

No Comment Found