What are the advantages of separting new systems development from systems maintenance?
What will be an ideal response?
Documentation standards are improved because the maintenance group requires documentation to perform its maintenance duties. Denying the original programmer future access to the program deters program fraud.
PTS: 1
Computer Science & Information Technology
You might also like to view...
The ________ element allows you to add a short description about a table
A)
Computer Science & Information Technology
What will the output look like?
``` int main() { int x = 5; if(x == 5) cout<<”x is 5”; if(x == 6) cout<<”x is 6”; if(x == 7) cout<<”x is 7”; return 0; }``` A. x is 5 B. x is 5x is 6x is 7 C. Crash. It needs {}. D. The if statements will not execute.
Computer Science & Information Technology