1/29
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced |
---|
No study sessions yet.
How do you convert a number from base 10 to any other base?
Repeatedly divide the base 10 number by the target base, recording the remainder. When the quotient reaches 0, read the remainders in reverse (bottom to top) to get the number in the new base. If the base uses special digits (like A–F for hexadecimal), convert any remainders ≥10 into the correct symbol.