Computer Science, asked by rinku1122, 1 year ago

246 base 10 in binary​

Answers

Answered by ARCE
0

Answer:

100001000

Explanation:

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

264/2 = 132, remainder is 0

132/2 = 66, remainder is 0

66/2 = 33, remainder is 0

33/2 = 16, remainder is 1

16/2 = 8, remainder is 0

8/2 = 4, remainder is 0

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

Hope this helps!

Similar questions