|
|
| Table of contents |
|
2 Programming languages 3 Software development 4 History 5 See also 6 External links |
An algorithm is, in one sense, an abstracted program - put differently, a program is an algorithm made concrete. However, all but the smallest programs are most easily thought of as a collection of smaller algorithms combined in a unique way - as a house is built from components.
Thus, an algorithm is a description of how a computer can be made to carry out a single, specific operation, such as sorting. A program, on the other hand, is an entity that actually implements one or more such operations in a way that is useful to people.
Different programming languages work in different ways. So, programmers may create very different programs for different languages; although, theoretically, most languages can be used to create any possible program. For more information on those methods, see Programming language.
Software is a mass noun for computer programs and data.
Creating software involves:
Alan Turing is often considered the father of computer science, and by proxy, programming. He was responsible for helping design and program a computer to break the German ENIGMA code during World War Two.Programs versus algorithms
Programming languages
The program is written in a programming language, although it is possible to write directly in machine code, with a certain difficulty. Different parts of a program may be written in different languages.Software development
These steps are collectively known as software development. Programming emphasizes steps 2, 3 and 4. Coding emphasizes step 3. The skills required to be a coder require the ability to mentally translate concepts of step 1 to expressions in the target programming languages (step 3). The more skillful coders can typically outproduce neophytes in both speed and accuracy of implementation and longevity of their product (which is the point of step 6). Thus source code in a source code control system is a valuable resource for a programmer. An enterprise which depends on only one programmer will typically fail if that critical person departs.History
Hero of Alexandria in the first century invented automated theatres that used analogue programming to control the puppets, doors, lights and sound effects, but the earliest recognised computer programmer was Ada Lovelace, daughter of Anabella and Lord Byron (the poet). Anabella gave her love of mathematics to Ada, who after meeting Charles Babbage, translated and expanded a description of his analytical engine. Even though Babbage never completed construction of any of his machines, the work that he and Ada did on them earned her the title of the world's first computer programmer, see Ada Byron's notes on the analytical engine. The Ada programming language is named for her. (To do: find name of first programmer to complete all 5 steps, including compiling and testing.)