Computer Programming - Wikipedia
Computer Programming - Wikipedia
History
Code-breaking algorithms have also existed for centuries. In the 9th century, the Arab
mathematician Al-Kindi described a cryptographic algorithm for deciphering encrypted code, in A
Manuscript on Deciphering Cryptographic Messages. He gave the first description of cryptanalysis
by frequency analysis, the earliest code-breaking algorithm.[7]
The first computer program is generally dated to 1843 when mathematician Ada Lovelace
published an algorithm to calculate a sequence of Bernoulli numbers, intended to be carried out
by Charles Babbage's Analytical Engine.[8]
In the 1880s, Herman Hollerith invented the concept of storing data in machine-readable form.[9]
Later a control panel (plug board) added to his 1906 Type I Tabulator allowed it to be
programmed for different jobs, and by the late 1940s, unit record equipment such as the IBM 602
and IBM 604, were programmed by control panels in a similar way, as were the first electronic
computers. However, with the concept of the stored-program computer introduced in 1949, both
programs and data were stored and manipulated in the same way in computer memory.[10]
Machine language
Machine code was the language of early programs, written in the instruction set of the particular
machine, often in binary notation. Assembly languages were soon developed that let the
programmer specify instructions in a text format (e.g., ADD X, TOTAL), with abbreviations for
each operation code and meaningful names for specifying addresses. However, because an
assembly language is little more than a different notation for a machine language, two machines
with different instruction sets also have different assembly languages.
Compiler languages
High-level languages made the process of developing a program simpler and more
understandable, and less bound to the underlying hardware. The first compiler related tool, the A-
0 System, was developed in 1952[11] by Grace Hopper, who also coined the term 'compiler'.[12][13]
FORTRAN, the first widely used high-level language to have a functional implementation, came
out in 1957,[14] and many other languages were soon developed—in particular, COBOL aimed at
commercial data processing, and Lisp for computer research.
These compiled languages allow the programmer to write programs in terms that are
syntactically richer, and more capable of abstracting the code, making it easy to target varying
machine instruction sets via compilation declarations and heuristics. Compilers harnessed the
power of computers to make programming easier[14] by allowing programmers to specify
calculations by entering a formula using infix notation.
Programs were mostly entered using punched cards or paper tape. By the late 1960s, data
storage devices and computer terminals became inexpensive enough that programs could be