Which of the following choices is not one of the three major elements of the software lifecycle covered by Configuration management?

A. Quality control
B. Assurance
C. Maintenance
D. Development

Answer: A

Computer Science & Information Technology

You might also like to view...

________ is malware that collects personal information or changes your browser settings

A) Spyware B) A worm C) A virus D) A Trojan horse

Computer Science & Information Technology

Which of the following template function definitions and invocations will not compile, if any? If not, why not?

Assume that classes have been declared with appropriate default constructors and assume that ``` //a) template A func( A x, A y){ return A(); } int main() { U u1, u2, u3; u2 = func(u2, u3); } //b. template B func() { return 1; } int main() { T t; t = func(); } //c. template void func(C x, int * y){} int main() { T t; int i; func( t, &i ); } //d. template void func(D x, E y){} int main() { T t; U u; func ( t, u ); } ```

Computer Science & Information Technology