Computer Science, asked by savitadevi9399, 2 months ago

Convert the following Decimal number into binary number. 64.
Please answer me like this ​

Attachments:

Answers

Answered by karunadevigaurav
2

Answer:

64 Decimal To Binary Conversion:

step 1 Perform the successive MOD operation by 2 for the given decimal number 64 and note down the remainder (either 0 or 1) for each operation. The last remainder is the MSB (most significant bit) and the first remainder is the LSB (least significant bit).

64 / 2 = 32 : Remainder is 0 → LSB

32 / 2 = 16 : Remainder is 0

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 → MSB

step 2 Write the remainders from MSB to LSB provide the equivalent binary number

1000000

6410 = 10000002

Explanation:

Please mark me as brainliest

Similar questions