Computer Science, asked by sudhipanda4633, 6 months ago

Convert the following decimal number into binary number 68

Answers

Answered by sanjeevsitapur2
7

Answer:

68 Decimal To Binary Conversion:

step 1

Perform the successive MOD operation by 2 for the given decimal number 68 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).

68 / 2 = 34 : Remainder is 0 → LSB

34 / 2 = 17 : Remainder is 0

17 / 2 = 8 : Remainder is 1

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

1000100

(68)¹⁰ = 10001002

_________________________

HOPE YOU UNDERSTAND IT!!

Answered by jasmine506454
2

Answer:

the binary no is

Explanation:

1000100

Similar questions