Computer Science, asked by rambhakt716, 1 month ago

Convert the decimal number 106 to binary number. 2 points 1001010 1101010 1110001 1010010​

Answers

Answered by mohinickoli
2

Explanation:

106)10 = (1101010)2

Step by step solution

Step 1: Divide (106)10 successively by 2 until the quotient is 0:

106/2 = 53, remainder is 0

53/2 = 26, remainder is 1

26/2 = 13, remainder is 0

13/2 = 6, remainder is 1

6/2 = 3, remainder is 0

3/2 = 1, remainder is 1

1/2 = 0, remainder is 1

Step 2: Read from the bottom (MSB) to top (LSB) as 1101010.

So, 1101010 is the binary equivalent of decimal number 106 (Answer).

Similar questions