Write steps to convert decimal number to binary.
Hello Dear ,
- Firstly, you have to divide that decimal number by 2.
- Now , for the next iteration, get the integer quotient.
- After this , you will get the remainder for the binary digit.
- Repeat the above steps until the quotient is equal to 0
- When u get the quotient is equal to 0 , then write the remainder in a sequential way from bottom to top including that quotient 0 ,that will be your answer.
Despite this , if you have doubt then you can go through the link given below --
https://www.wikihow.com/Convert-from-Decimal-to-Binary
Hope this will help you..!!
Hello Ajit
You may use the following steps to convert decimal number to binary.
Step 1: Divide the given decimal number by 2 and note down the remainder.
Step 2: Now, divide the obtained quotient by 2, and note the remainder again.
Step 3: Repeat the above steps until you get 0 as the quotient.
Step 4: Now, write the remainders in such a way that the last remainder is written first, followed by the rest in the reverse order.
Step 5: This can also be understood in another way which states that the Least Significant Bit (LSB) of the binary number is at the top and the Most Significant Bit (MSB) is at the bottom. This number is the binary value of the given decimal number.