A dependency created between subprojects is a ____ link.

A. cross-project
B. documentation
C. resource
D. master


Answer: A

Computer Science & Information Technology

You might also like to view...

What is the output of the following code fragment if x is 15?

if(x < 20) if(x <10) cout << "less than 10 "; else cout << "large\n"; a. less than 10 b. nothing c. large d. no output, syntax error

Computer Science & Information Technology

The declaration ArrayList aL = new ArrayList();

A) allows the programmer to create an ArrayList that holds integer types B) compiles correctly, but causes an exception to be thrown at run time C) causes a compile-time error D) compiles and runs correctly, but is not recommended

Computer Science & Information Technology

List reasons why companies might outsource jobs. Describe pros and cons of outsourcing.

What will be an ideal response?

Computer Science & Information Technology

Which of the following statements about passing a two-dimensional array is false?

A. To pass the whole array, only the array name and the number of columns is necessary. B. To pass an individual element, the calling statement needs to use the array name and both indexes. C. To pass a row, the calling statement needs to use only the array name indexed by the row number. D. In the function definition for a fixed-length array, the formal parameter is a two-dimensional array with the size of the second-dimension specified. E. In the function definition for a variable-length array, the size of all dimensions is specified.

Computer Science & Information Technology