Input is the term denoting either an entrance or changes which are inserted into a system and which activate/modify a process. It is an abstract concept, used in the modeling, system(s) design and system(s) exploitation. It is usually connected with other terms, e.g., input field, input variable, input parameter, input value, input signal, input port, input device and input file (file format).
Input may refer to:
![]() |
Look up input or inputs in Wiktionary, the free dictionary. |
![]() |
This disambiguation page lists articles associated with the same title. If an internal link led you here, you may wish to change the link to point directly to the intended article. |
In economics, factors of production, resources, or inputs are what is used in the production process to produce output—that is, finished goods and services. The amounts of the various inputs used determine the quantity of output according to a relationship called the production function. There are three basic resources or factors of production: land, labour, and capital. These factors are also frequently labeled "producer goods" to distinguish them from the goods or services purchased by consumers, which are frequently labeled "consumer goods." All three of these are required in combination at a time to produce a commodity.
Factors of production may also refer specifically to the primary factors, which are land, labor (the ability to work), and capital goods applied to production. Materials and energy are considered secondary factors in classical economics because they are obtained from land, labour and capital. The primary factors facilitate production but neither become part of the product (as with raw materials) nor become significantly transformed by the production process (as with fuel used to power machinery). Land includes not only the site of production but natural resources above or below the soil. Recent usage has distinguished human capital (the stock of knowledge in the labor force) from labor. Entrepreneurship is also sometimes considered a factor of production. Sometimes the overall state of technology is described as a factor of production. The number and definition of factors varies, depending on theoretical purpose, empirical emphasis, or school of economics.
In computer science, the general meaning of input is to provide or give something to the computer, in other words the state/act of a computer, component of a computer or relevant device being accepting something from the user, from a device or from a piece of software either automatically or manually is called input.
We categorize computer devices as input devices because we use these devices to send instructions to the computer, we are sending our "Input" to the computer, some common examples of computer input devices are:
We may also call some inner parts of the computer as input components to the other components, like the power-on button of a computer is an input component for the processor or the power supply, because it takes user input and sends it to other components for further processing.
In many computer languages the keyword "input" is used as a special keyword or function, such as in Visual Basic or Python, the word "input" is used to get text input from the user.
Make or MAKE may refer to:
Make (or MAKE) is an American bimonthly magazine published by Maker Media which focuses on do it yourself (DIY) and/or DIWO (Do It With Others) projects involving computers, electronics, robotics, metalworking, woodworking and other disciplines. The magazine is marketed to people who enjoy making things and features complex projects which can often be completed with cheap materials, including household items. Make magazine is considered "a central organ of the maker movement."
Its first issue was released in January 2005, and as of March 2014, 38 issues have been published. The magazine is subtitled "technology on your time." It is also available as an IPad version and a Texterity digital edition on the Web, which is free of charge to existing magazine subscribers. The HTML-based digital edition allows for searching and includes additional content such as videos, with freely accessible blogs, podcasts and forums also available in the website. The digital edition also allows limited sharing of articles with friends.
In software development, Make is a build automation tool that automatically builds executable programs and libraries from source code by reading files called Makefiles which specify how to derive the target program. Though integrated development environments and language-specific compiler features can also be used to manage a build process, Make remains widely used, especially in Unix.
Besides building programs, Make can be used to manage any project where some files must be updated automatically from others whenever the others change.
There are now a number of dependency-tracking build utilities, but Make is one of the most widespread, primarily due to its inclusion in Unix, starting with the PWB/UNIX 1.0, which featured a variety of tools targeting software development tasks. It was originally created by Stuart Feldman in April 1976 at Bell Labs. Feldman received the 2003 ACM Software System Award for the authoring of this widespread tool.
Before Make's introduction, the Unix build system most commonly consisted of operating system dependent "make" and "install" shell scripts accompanying their program's source. Being able to combine the commands for the different targets into a single file and being able to abstract out dependency tracking and archive handling was an important step in the direction of modern build environments.