Computer Science, asked by Shivaish, 10 months ago

Covrt 75 to binary.

Answers

Answered by krishtiwari07
1

Answer:

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

75/2 = 37, remainder is 1

37/2 = 18, remainder is 1

18/2 = 9, remainder is 0

9/2 = 4, remainder is 1

4/2 = 2, remainder is 0

2/2 = 1, remainder is 0

1/2 = 0, remainder is 1

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

Answered by abhishek0072
0

75= 0b1001011

Hope it helps

Similar questions