Currently there may be errors shown on top of a page, because of a missing Wiki update (PHP version and extension DPL3).
Navigation
Topics Help • Register • News • History • How to • Sequences statistics • Template prototypes

Difference between revisions of "Program"

From Prime-Wiki
Jump to: navigation, search
(restored)
 
m
 
Line 1: Line 1:
A '''computer program''' (also a '''[[:Category:Software|software]] program''', or just a '''program''') is a sequence of instructions written to perform a specified task for a [[computer]]. A computer requires programs to function, typically executing the program's instructions in a [[CPU|central processor]]. The program has an executable form that the computer can use directly to execute the instructions. The same program in its human-readable [[code|source code]] form, from which executable programs are derived (e.g., compiled), enables a programmer to study and develop its [[algorithm]]s.
+
A '''computer program''' (also a '''[[software]] program''', or just a '''program''') is a sequence of instructions written to perform a specified task for a [[computer]]. A computer requires programs to function, typically executing the program's instructions in a [[CPU|central processor]]. The program has an executable form that the computer can use directly to execute the instructions. The same program in its human-readable [[code|source code]] form, from which executable programs are derived (e.g., compiled), enables a programmer to study and develop its [[algorithm]]s.
  
 
Computer source code is often written by computer programmers. Source code is written in a programming language that usually follows one of two main paradigms: imperative or declarative programming. Source code may be converted into an executable file (sometimes called an executable program or a binary) by a compiler and later executed by a central processing unit. Alternatively, computer programs may be executed with the aid of an interpreter, or may be embedded directly into hardware.
 
Computer source code is often written by computer programmers. Source code is written in a programming language that usually follows one of two main paradigms: imperative or declarative programming. Source code may be converted into an executable file (sometimes called an executable program or a binary) by a compiler and later executed by a central processing unit. Alternatively, computer programs may be executed with the aid of an interpreter, or may be embedded directly into hardware.
Line 9: Line 9:
 
*Knuth, Donald E., The Art of Computer Programming, Volume 2, 3rd Edition, 1997, Addison-Wesley, ISBN 0-201-89684-2
 
*Knuth, Donald E., The Art of Computer Programming, Volume 2, 3rd Edition, 1997, Addison-Wesley, ISBN 0-201-89684-2
 
*Knuth, Donald E., The Art of Computer Programming, Volume 3, 3rd Edition, 1997, Addison-Wesley, ISBN 0-201-89685-0
 
*Knuth, Donald E., The Art of Computer Programming, Volume 3, 3rd Edition, 1997, Addison-Wesley, ISBN 0-201-89685-0
 
Adapted from: [http://en.wikipedia.org/wiki/Computer_program Wikipedia]
 
  
 
==External links==
 
==External links==
*[https://en.wikipedia.org/wiki/Computer_program Wikipedia]
+
*[[Wikipedia:Computer_program|Computer program]]
 
[[Category:Software]]
 
[[Category:Software]]

Latest revision as of 11:53, 7 February 2019

A computer program (also a software program, or just a program) is a sequence of instructions written to perform a specified task for a computer. A computer requires programs to function, typically executing the program's instructions in a central processor. The program has an executable form that the computer can use directly to execute the instructions. The same program in its human-readable source code form, from which executable programs are derived (e.g., compiled), enables a programmer to study and develop its algorithms.

Computer source code is often written by computer programmers. Source code is written in a programming language that usually follows one of two main paradigms: imperative or declarative programming. Source code may be converted into an executable file (sometimes called an executable program or a binary) by a compiler and later executed by a central processing unit. Alternatively, computer programs may be executed with the aid of an interpreter, or may be embedded directly into hardware.

Computer programs may be categorized along functional lines: system software (such as Windows or Linux and application software (such as Prime95, games, or word processors). Two or more computer programs may run simultaneously on one computer, a process known as multitasking.

Further reading

  • Knuth, Donald E., The Art of Computer Programming, Volume 1, 3rd Edition, 1997, Addison-Wesley, ISBN 0-201-89683-4
  • Knuth, Donald E., The Art of Computer Programming, Volume 2, 3rd Edition, 1997, Addison-Wesley, ISBN 0-201-89684-2
  • Knuth, Donald E., The Art of Computer Programming, Volume 3, 3rd Edition, 1997, Addison-Wesley, ISBN 0-201-89685-0

External links