Computer Science, asked by sailendrakumar2005, 4 months ago

Convert
200
(10) into binary number system​

Answers

Answered by Rohini7711
0

Decimal 200 to Binary Conversion

Decimal 200 to Binary ConversionThe base-10 value of 20010 is equal to base-2 value of 110010002.

Answered by priyasamanta501
3

To convert a decimal number into binary number, follow the given steps :

  • Divide the decimal number by 2 continuously
  • After each division write the remainder on the right hand side
  • Arrange the remainder from bottom to top

Solution :

200/2 = 100, remainder is 0

100/2 = 50, remainder is 0

50/2 = 25, remainder is 0

25/2 = 12, remainder is 1

12/2 = 6, remainder is 0

6/2 = 3, remainder is 0

3/2 = 1, remainder is 1

1/2 = 0, remainder is 1

Therefore, (200)10 = (11001000)2

Similar questions