Jump to content

Bit pattern

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by 219.77.53.79 (talk) at 09:15, 6 January 2005. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

Bit pattern is the pattern of bitwise operations.

When you type a character on the keyboard, the electronic circuitry interprets the character and stores it in the main memory as a code.

The code is a series of on and off signals. The on and off signals can be represented by the binary digits '1' and '0' respectively. So it is called bit.

Eight bits together are called one byte. So we can say that one byte holds one character. The most widely used coding system used to represent data is the American Standard Code for Information Interchange (ASCII). For example, the word 'HELLO' will be stored in the computer in the following pattern:

01001000 H 

01000101 E 

01001100 L 

01001100 L 

01001111 O 

See Also