Difficulty: Easy
Correct Answer: Incorrect
Explanation:
Introduction / Context:Digital systems often represent decimal digits, but the physical signaling is still binary. Binary-coded decimal (BCD), seven-segment encoding, and ASCII all use combinations of binary lines rather than ten DC voltage levels per wire.
Given Data / Assumptions:
Concept / Approach:BCD uses 4 binary bits to encode 0–9. Each bit is one of two voltage levels. A multi-wire combination creates ten codes, not ten analog levels on one wire. Other codes (ASCII) similarly use multiple binary lines or serial binary streams to represent decimal symbols.
Step-by-Step Solution:
Identify decimal representation: e.g., BCD 0000 to 1001.Each bit line carries two levels only.No single conductor carries ten stable levels in standard logic.Therefore the statement is incorrect.Verification / Alternative check:Datasheets for BCD counters/decoders show binary outputs and two-level inputs; displays are driven via decoders, not tramite ten-level voltages.
Why Other Options Are Wrong:Correct: Conflicts with binary signaling practice.
True only for legacy TTL / analog computers: TTL is binary; analog computers do not use “decimal code levels” as defined here.
Common Pitfalls:Equating ten symbols with ten voltage levels. Confusing code cardinality with signaling levels.
Final Answer:Incorrect
Discussion & Comments