Questions: Converting Between Binary, Decimal, and Hexadecimal

5 questions to test your understanding

Score: 0 / 5
Question 1 Multiple Choice

What is the hexadecimal equivalent of the binary number 1011 1010?

A0x188
B0x1BA
C0xBA
D0x11BA
Question 2 Multiple Choice

Why is hexadecimal preferred over binary for displaying memory addresses in debuggers and hex dumps?

AHexadecimal arithmetic is faster for computers to perform than binary arithmetic
BHexadecimal is a human-readable form compatible with standard decimal notation
COne hex digit represents exactly four bits, so hex compresses binary by 4:1 without any arithmetic conversion
DMemory addresses are stored internally as hexadecimal values, not binary
Question 3 True / False

To convert between binary and hexadecimal, you is expected to first convert both values to decimal as an intermediate step.

TTrue
FFalse
Question 4 True / False

In the repeated-division method for converting a decimal number to another base, the remainders are read from the last computed to the first — that is, bottom to top — to form the result.

TTrue
FFalse
Question 5 Short Answer

Explain why converting between binary and hexadecimal requires no arithmetic, while converting between either of these and decimal does require calculation.

Think about your answer, then reveal below.