Subroutines (Computer programs)
Enlarge text Shrink text-
Save successfulThe item can be found in your Personal ZoneשגיאהLog in to your account to save
Information for Authority record
Other Identifiers
- Wikipedia, Jan. 12, 2007(Subroutine -- In computer science, a subroutine (function, method, procedure, or subprogram) is a portion of code within a larger program that performs a specific task and is relatively independent of the remaining code)
- Wikipedia, Jan. 12, 2007(Routine -- A section of a program that performs a particular task ... The term routine is synonymous with procedure, function, and subroutine)
Wikipedia description:
In computer programming, a function (also procedure, method, subroutine, routine, or subprogram) is a callable unit of software logic that has a well-formed interface and behavior and can be invoked multiple times. Callable units provide a powerful programming tool. The primary purpose is to allow for the decomposition of a large and/or complicated problem into chunks that have relatively low cognitive load and to assign the chunks meaningful names (unless they are anonymous). Judicious application can reduce the cost of developing and maintaining software, while increasing its quality and reliability. Callable units are present at multiple levels of abstraction in the programming environment. For example, a programmer may write a function in source code that is compiled to machine code that implements similar semantics. There is a callable unit in the source code and an associated one in the machine code, but they are different kinds of callable units – with different implications and features.
Read more on Wikipedia >