Computer Science, asked by gauravpatil79, 11 months ago

decimal to binary 190,10​

Answers

Answered by himanshuheda123
1

Answer:

Number Base Converter

   

190

=  

10111110

(190)10 = (10111110)2

Step by step solution

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

190/2 = 95, remainder is 0

95/2 = 47, remainder is 1

47/2 = 23, remainder is 1

23/2 = 11, remainder is 1

11/2 = 5, remainder is 1

5/2 = 2, remainder is 1

2/2 = 1, remainder is 0

1/2 = 0, remainder is 1

Step 2: Read from the bottom (MSB) to top (LSB) as 10111110. This is the binary equivalent of decimal number 190 (Answer).

Similar questions