Difficulty: Easy
Correct Answer: Character
Explanation:
Introduction / Context:
When you type using a keyboard, each press of a key sends a specific unit of information to the computer. This unit might be a letter, a number or a special symbol. Computers represent these units using character codes such as ASCII or Unicode. This question tests whether you know the standard term for such a unit of text. Understanding this helps when discussing strings, text processing and file encoding in computing.
Given Data / Assumptions:
Concept / Approach:
The standard term for a single letter, digit, punctuation mark or symbol in text is character. In computing, each character is associated with a numeric code so that it can be stored and processed. For example, the letter A, the digit 5 and the symbol @ are all characters. The word output refers to information produced by the computer, not a single symbol. Type can refer to a category or to typography, and print is a verb or noun relating to producing text on paper. Glyph is a more specialised term in typography and font design, but in basic computer terminology character is preferred.
Step-by-Step Solution:
Verification / Alternative check:
Textbooks and programming tutorials often state that a string is a sequence of characters. Character encoding schemes such as ASCII or Unicode define mappings from integer values to characters like A, 1 or $. In user interface descriptions, the documentation refers to character input from the keyboard. When you press a key, the underlying software detects a character code. All these sources consistently use the word character for this concept rather than type or glyph in basic explanations.
Why Other Options Are Wrong:
Common Pitfalls:
Some learners think of character only as a person in a story and do not connect it to text symbols. Others may confuse character with glyph or font when dealing with typography and design. For exam purposes and introductory computing, it is safest to remember that individual symbols like letters and digits, when entered or stored, are called characters. Groups of characters form strings, and strings make up larger units such as words and lines.
Final Answer:
Any letter, number or symbol you type on the keyboard is called a character in computer terminology.
Discussion & Comments