Computer Science, asked by sakshibhalerao74, 10 months ago

convert 99 decimal to binary​

Answers

Answered by aishaatif412
5

Answer: 1100011

Explanation: Divide the number by 2.

Get the integer quotient for the next iteration.

Get the remainder for the binary digit.

Repeat the steps until the quotient is equal to 0.

Answered by Anonymous
14

Explanation:

(99)10 = (1100011)2

Step by step solution

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

99/2 = 49, remainder is 1

49/2 = 24, remainder is 1

24/2 = 12, remainder is 0

12/2 = 6, remainder is 0

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 1100011. This is the binary equivalent of decimal number 99 (Answer).

Similar questions