What is involved in putting a program into production?

What will be an ideal response?


Once the program is tested adequately, it is ready for the organization to use. Putting the program into production might mean simply running the program once, if it was written to satisfy a user's request for a special list. However, the process might take months if the program will be run on a regular basis, or if it is one of a large system of programs being developed. Perhaps data-entry people must be trained to prepare the input for the new program; users must be trained to understand the output; or existing data in the company must be changed to an entirely new format to accommodate this program. Conversion, the entire set of actions an organization must take to switch over to using a new program or set of programs, can sometimes take months or years to accomplish.

Computer Science & Information Technology

You might also like to view...

In order to retain data while a program is not running, data must be saved in __________.

a. RAM b. a ListBox c. a control d. a file

Computer Science & Information Technology

(What Does this Program Do?) What does the following program print?

``` // Mystery2.cpp #include using namespace std; int main() { unsigned int count{1}; while (count <= 10) { cout << (count % 2 == 1 ? "****" : "++++++++") << endl; ++count; } } ```

Computer Science & Information Technology

The standard stream objects declared by header are _______, _________ , ________and ______.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

Explain the di?erence between ODMG relationships and E-R relationships.

What will be an ideal response?

Computer Science & Information Technology