Math, asked by rakhigupta92, 6 months ago

decimal to binary 987 with checking

Answers

Answered by 13061
0

Answer:

Decimal 987 to Binary Conversion

The base-10 value of 98710 is equal to base-2 value of 11110110112.

Answered by yeet999
1

Answer:

987 = 1111011011

Step-by-step Explanation:

step 1:

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

987 / 2 = 493   : Remainder is 1 → LSB

493 / 2 = 246   : Remainder is 1

246 / 2 = 123   : Remainder is 0

123 / 2 = 61   : Remainder is 1

61 / 2 = 30   : Remainder is 1

30 / 2 = 15   : Remainder is 0

15 / 2 = 7   : Remainder is 1

7 / 2 = 3   : Remainder is 1

3 / 2 = 1   : Remainder is 1

1 / 2 = 0   : Remainder is 1 → MSB

step 2

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

1111011011

98710 = 11110110112

Similar questions