LanguageEnglishDeutsch
Electrical engineering

word

A unit of text equivalent to five characters and one space.

word: five characters plus space in electrical data

In electrical engineering and digital systems, a word is a fixed-length unit of data that a processor or memory system handles as a single entity. The traditional definition of five characters plus one space comes from early punched-card and paper-tape systems, where this length matched mechanical constraints and telegraph conventions. However, the term evolved dramatically with solid-state electronics, and today a word's size depends entirely on the system architecture.

Modern word sizes are measured in bits and are almost always powers of two: 8 bits (1 byte), 16 bits, 32 bits, or 64 bits are common values. A 32-bit processor performs arithmetic, logic, and memory operations on 32-bit words; a 64-bit processor uses 64-bit words. The word size determines how much data moves through the arithmetic logic unit in one clock cycle, so it directly affects throughput and speed. A 16-bit microcontroller from the 1980s could add two 16-bit numbers in one instruction; a modern 64-bit CPU handles much larger values at the same step.

When data is smaller than a word, it must be padded or packed with other values. When data is larger, it must be split across multiple words and reassembled by software. This mismatch between data size and word size creates inefficiency and complexity. Memory addressing also hinges on word width: a 32-bit system with 32-bit words addresses memory in 4-byte increments, while a 16-bit system increments by 2 bytes. Misalignment, where a data element does not sit on a word boundary, can slow access or cause faults.

Instruction words hold the machine code for a single operation and may differ in size from data words. A processor might use 16-bit instructions but 32-bit data words. Double words (dword) and quad words (qword) are common terms for 32-bit and 64-bit values respectively on 16-bit or 32-bit systems. In telecommunications and industrial protocols, a word often refers to a fixed register or message unit; for example, Modbus TCP uses 16-bit words for register data, and EtherCAT uses multibyte frames grouped into logical words.

The legacy five-character definition survives in older documentation, industry standards, and data entry systems where teletypewriter conventions still apply. Knowing which definition applies requires understanding the context: historical texts, legacy hardware, and paperless office standards invoke the character-based definition, while semiconductor datasheets, processor manuals, and firmware always refer to bits. Confusion between the two can cause buffer overflows, misaligned memory access, and data corruption in code that bridges old and new systems.

More from Electrical engineering

See all

Get the Word of the Day

One industrial term every day, with the trade it belongs to and why it is worth knowing. No advertising.