Answer:
The method of converting a base 10 or decimal number into base 2 or binary number is as following:-
- Divide the decimal number by 2 and store it's remainder.
- keep dividing the decimal number by 2 until it becomes 0 and also keep storing it's remainder.
- Then write the remainders in reverse order.This the binary number.
Refer the attached image for better explanation.