Mission: Understand how computers turn binary 0s and 1s into the text, emojis, and symbols you see every day.
A character set is a defined list of characters that a computer system can recognize. It acts as a "lookup table" where each character is assigned a unique binary code.
Computers only process binary. To display an 'A', the computer stores its binary equivalent (e.g., 01000001) and "looks up" which symbol to draw on screen.
The more bits you use per character, the more characters you can represent. This follows a mathematical pattern:
The Old Standard. Primarily for the English language and basic symbols.
The Global Standard. Designed to represent every character from every language.
The Bit Count: In the J277 exam, ASCII uses 8 bits for calculations. This includes 1 bit for error checking (parity bit).
The "Relationship" Question: If asked about bits vs characters, you must say: "Increasing the bits increases the number of unique characters that can be represented."
Order Logic: Character sets are logically ordered. If 'A' is 65, 'B' will be 66. This is a common 1-mark question!