Difficulty: Easy
Correct Answer: ASCII
Explanation:
Introduction / Context:Character encodings map symbols to numerical codes. Historically, the most influential 7-bit standard is ASCII, which defined codes for letters, digits, punctuation, and control characters used in communications and computing. This item checks recognition of that specific seven-bit standard among distractors.
Given Data / Assumptions:
Concept / Approach:Identify the name that matches a seven-bit, widely adopted character set: ASCII (American Standard Code for Information Interchange). Other names either refer to number systems (octal), are non-standard terms, or different encodings (EBCDIC is 8-bit and IBM-mainframe oriented).
Step-by-Step Solution:
Recall that ASCII is defined over 7 bits.Match ASCII’s scope: letters, digits, punctuation, control codes.Eliminate distractors that do not fit a seven-bit standardized character code.Select ASCII as correct.Verification / Alternative check:Consult any basic computing reference: ASCII 0x41–0x5A are uppercase A–Z, 0x61–0x7A lowercase a–z, confirming its intended breadth of characters in 7 bits.
Why Other Options Are Wrong:
Common Pitfalls:Confusing ASCII with EBCDIC; assuming all legacy encodings are 8-bit; forgetting that ASCII’s canonical size is 7 bits even though commonly stored in 8-bit bytes.
Final Answer:ASCII
Discussion & Comments