Your boss asks you to work through the weekend to install new software on the applications server that serves up applications to 20 users. The following Monday, all users report they cannot open their data files. After speaking with technical support for the new application, you discover it is not compatible with the old data files. Which type of documentation should you refer to first to address this problem?

a. Risk analysis documents

b. Back-out plan documents

c. Change management documents

d. Scope of change documents


a. Risk analysis documents

Computer Science & Information Technology

You might also like to view...

How does inheritance allow you to reduce the amount of code you may need to write in a style sheet?

What will be an ideal response?

Computer Science & Information Technology

Complete the program below so that it computes the price of a piece of glass. Pieces of glass are usually priced based on the type of glass and the area of the piece, but there is a minimum charge of $2.00. For clear glass (glass type 1), the charge is $6.00 per square meter; for frosted glass (type 2), the price is $10.00 per square meter. For example, the cost of a 0.25-square-meter piece of clear glass is $2.00 since 0.25 * $6.00 is $1.50, an amount less than the minimum charge. The price of a 2.4-square-meter piece of frosted glass is $24.00 (2.4 * $10.00). You do not need to do error checking in the program.

``` #include #define CLEAR 1 #define SQMETER_CLEAR 6.00 #define FROSTED 2 #define SQMETER_FROSTED 10.00 #define MINIMUM 2.00 int main(void) { double price, area; int type; printf("Enter glass type: %d (clear) or %d (frosted)> ", CLEAR, FROSTED); scanf("%d", &type); printf("Enter area in square meters> "): scanf("%lf", &area); ```

Computer Science & Information Technology

How is data organized on a magnetic hard drive?

What will be an ideal response?

Computer Science & Information Technology

As used in

int square(int); int is not a(n) __________. a) data type b) parameter type c) return type d) function prototype

Computer Science & Information Technology