convert decimal number 43 into a binary
Answers
Answered by
5
Divide (43)10 successively by 2 until the quotient is 0:
43/2 = 21, remainder is 1
21/2 = 10, remainder is 1
10/2 = 5, remainder is 0
5/2 = 2, remainder is 1
2/2 = 1, remainder is 0
1/2 = 0, remainder is 1
Step 2: Read from the bottom (MSB) to top (LSB) as 101011.
So, 101011 is the binary equivalent of decimal number 43 (Answer).
Answered by
0
101011 is the answer
hope it helps you❣
Similar questions