____________________ refers to keeping track of the progress of a program development project, such as documenting revisions, storing each version of the program so it can be recreated if needed, and keeping track of all components used in the final program.

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

Configuration management

Computer Science & Information Technology

You might also like to view...

When previewing a merge, the Next Record button can be found in the ________ groups

A) Merge B) Preview Results C) Print Preview D) Merge and Preview

Computer Science & Information Technology

Which of the following are correct invocations for the pow function? If any of the following is correct, give the value returned or assigned, and if apparently incorrect, explain.

Given the following include directive (to get the declaration for the pow function from the math library): ``` #include ``` Now make these declarations: double base = 2, exponent = 3, power = 4; a) power = pow(base, exponent); b) pow(power, base, exponent); c) pow(base, exponent) = power; d) base = pow(exponent, power);

Computer Science & Information Technology