Try another version of this question Get help: Question 1
Convert from 123, 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: The highest power of 4 that divides 123 is `4^3 = 64`.
`123/64` = 1, remainder 59.
Now we see how many `4^2 = 16` will divide into 59. `59/16` = 3, remainder 11.
`11/4` = 2, remainder 3.
So 123 written base-4 is 1323