Try another version of this question
Convert from 100, a BASE-10 NUMBER
to a BASE-4 NUMBER
Enter your result as string of digits in the correct order with NO SPACES OR COMMAS.
Your base-4 number:
to a BASE-4 NUMBER
Enter your result as string of digits in the correct order with NO SPACES OR COMMAS.
Your base-4 number:
Get help:
The highest power of 4 that divides 100 is `4^3 = 64`.
`100/64` = 1, remainder 36.
Now we see how many `4^2 = 16` will divide into 36. `36/16` = 2, remainder 4.
`4/4` = 1, remainder 0.
So 100 written base-4 is 1210
`100/64` = 1, remainder 36.
Now we see how many `4^2 = 16` will divide into 36. `36/16` = 2, remainder 4.
`4/4` = 1, remainder 0.
So 100 written base-4 is 1210