Difficulty: Easy
Correct Answer: Correct
Explanation:
Introduction / Context:Positional numeral systems are characterized by their base (radix) and the number of distinct digit symbols. Binary is base-2 and is the foundation of digital electronics. This item tests recognition of a fundamental property of the binary system.
Given Data / Assumptions:
Concept / Approach:By definition, a base-r system uses r unique digit symbols. For base-2, r = 2, hence two symbols. In digital practice these symbols are represented by two valid voltage/current ranges. All binary numbers, signed or unsigned, are sequences of these two symbols, even if interpreted differently by higher-level formats.
Step-by-Step Solution:
Recall the definition: binary = base-2.Therefore, it uses exactly two digit symbols.Map to hardware: logic 0 and logic 1 correspond to two valid level ranges.Conclude the statement is correct.Verification / Alternative check:Compare with other bases: octal (8 symbols 0–7), decimal (10 symbols 0–9), hexadecimal (16 symbols 0–9 and A–F).
Why Other Options Are Wrong:
Incorrect: Contradicts the definition of base-2.Signed/floating qualifiers: Representation formats do not change the base’s symbol count.Common Pitfalls:Confusing encoding schemes (e.g., BCD, Gray) with the underlying base; these are alternative mappings built from the same two symbols.
Final Answer:Correct
Discussion & Comments