Computer Science, asked by mahipalsingh0119989, 7 hours ago

Convert (115)power 10 into equivalent binary number​

Answers

Answered by gitikam341
1

Answer:

Divide (115)10 successively by 2 until the quotient is 0:

115/2 = 57, remainder is 1

57/2 = 28, remainder is 1

28/2 = 14, remainder is 0

14/2 = 7, remainder is 0

7/2 = 3, remainder is 1

3/2 = 1, remainder is 1

1/2 = 0, remainder is 1

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

So, 1110011 is the binary equivalent of decimal number 115

Similar questions