Computer Science, asked by shalukoundal3011984, 7 hours ago


convert binary number into decimal number

Answers

Answered by kumawatsanchi
0

Conversion steps:

Divide the number by 2.

Get the integer quotient for the next iteration.

Get the remainder for the binary digit.

Repeat the steps until the quotient is equal to 0.

hope it will help you.please mark me as brainly

Answered by pjahnabi007
3

Answer:

  • Divide the decimal number by two.

  • • Write the remainder on the right hand side. Continue the process till you reach 0 as quotient.

  • • Write the remainders from bottom to top to form the binary equivalent of the decimal number. The first remainder becomes the last binary digit, and the final remainder becomes the first binary digit.
Similar questions