A(n) ____ serves as a placeholder in your program until you develop the code.
A. stub
B. array
C. decision table
D. subscript
Answer: A
Computer Science & Information Technology
You might also like to view...
Which of the following is a valid declaration for a two-dimensional array?
a) int[][] matrix; b) int[2] matrix; c) int[]** matrix; d) int[] matrix; e) none of these are correct
Computer Science & Information Technology
Which of the following is syntactically legal in C++?
a. cout >> "Hi there." >> endl; b. cout << "Hi there. "; c. cout << "Hi there " << name << ", see you. "<< endl"; d. cout << "Hi there. " << name <<; e. cout << "Hi there << name << ", see you." endl;
Computer Science & Information Technology