Express (4237.10) decimal number as Binary , octal ,hexadecimal & base 5
Answers
Answered by
5
Answer:
Explanation:
repeated division and remainder algorithm can convert decimal to binary, octal, or hexadecimal.
Divide the decimal number by the desired target radix (2, 8, or 16).
Append the remainder as the next most significant digit.
Repeat until the decimal number has reached zero.
Similar questions