Difficulty: Easy
Correct Answer: nibble
Explanation:
Introduction / Context:
A core idea in digital systems is that 4 bits conveniently map to one hexadecimal digit. Knowing the standard names for common bit-widths makes documentation, debugging, and memory/encoding discussions precise and fast.
Given Data / Assumptions:
Concept / Approach:
Each hex digit expands to a 4-bit pattern (0000 through 1111). The well-accepted term for a 4-bit quantity is “nibble” (also spelled “nybble”). Eight bits form a “byte,” and a “word” is an architecture-dependent wider unit (often 16, 32, or 64 bits).
Step-by-Step Solution:
Verification / Alternative check:
Hex is popular because 4 bits align perfectly with one digit, letting engineers compress long binary strings. For example, 0xAB maps to 1010 1011; each 4-bit group (1010 and 1011) is one “nibble.” Documentation and instruction sets frequently refer to high nibble (upper 4 bits) and low nibble (lower 4 bits) of a byte.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
nibble
Discussion & Comments