Difficulty: Easy
Correct Answer: byte.
Explanation:
Introduction / Context:
Basic digital vocabulary is essential for interpreting datasheets and programming specifications. The term for eight bits is among the most frequently used in computing, microcontrollers, and communications.
Given Data / Assumptions:
Concept / Approach:
Historically, different systems used different word sizes, but the term for eight bits has long been standardized as “byte.” This is independent of the term “word,” which is architecture specific and may be 16, 32, 64 bits, etc.
Step-by-Step Solution:
Verification / Alternative check:
Programming languages, file formats, and memory addressing commonly define one byte as eight bits; this is reflected in char size in many systems and in network protocol definitions.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
byte.
Discussion & Comments