A(n) ____________________ guides design, development, and maintenance tasks.

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


technical project manager

Computer Science & Information Technology

You might also like to view...

Write a C++ program that uses the statements to calculate x raised to the y power. The program should have a while iteration statement.

``` // Exercise 4.8 Solution: power.cpp // Raise x to the y power. #include using namespace std; int main() { unsigned int i{1}; // initialize i to begin counting from 1 unsigned int power{1}; // initialize power cout << "Enter base as an integer: "; // prompt for base unsigned int x; // base cin >> x; // input base cout << "Enter exponent as an integer: "; // prompt for exponent unsigned int y; // exponent cin >> y; // input exponent // count from 1 to y and multiply power by x each time while (i <= y) { power *= x; ++i; } // end while cout << power << endl; // display result } // end main ```

Computer Science & Information Technology

A(n) ________ operating system can adapt well to new technologies and can be modified to perform tasks beyond its original design; a(n) ________ operating system is designed to operate on many hardware configurations.

a) robust, portable b) extensible, portable c) scalable, extensible d) extensible, robust

Computer Science & Information Technology

Nina is preparing for a job in the IT industry. Nina wants to get a job as a(n) ____ so that she can participate in the making of computer chips or circuit boards.

A. computer programmer B. QA specialist C. computer engineer D. manufacturing technician

Computer Science & Information Technology

Once a person has agreed to be a reference, it is good practice to post the contact information for that reference on your website.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology