convert decimal to binary step by step
Answers
Answered by
0
Answer:
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.
Example #1
Convert 1310 to binary:
Division Quotient Remainder Bit#
Division Quotient Remainder Bit#by 2
13/2 6 1 0
6/2 3 0 1
3/2 1 1 2
1/2 0 1 3
Similar questions