convert (150)10 into binary
Answers
Answered by
3
Answer:
Step 1: Divide (150)10 successively by 2 until the quotient is 0:
150/2 = 75, remainder is 0
75/2 = 37, remainder is 1
37/2 = 18, remainder is 1
18/2 = 9, remainder is 0
9/2 = 4, remainder is 1
4/2 = 2, remainder is 0
2/2 = 1, remainder is 0
1/2 = 0, remainder is 1
Step 2: Read from the bottom (MSB) to top (LSB) as 10010110. This is the binary equivalent of decimal number 150 (Answer).
Similar questions