____________ can be thought of as an array that can grow and shrink as needed.

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


Vectors

Computer Science & Information Technology

You might also like to view...

What is the value of the expression that follows?

strcmp(“dog”, “dogs”); a. -1 b. 0 c. 1 d. ‘s’ e. none of the above

Computer Science & Information Technology

What is the output of the following code?

``` #include using namespace std; int main() { int matrix[4][4] = {{1, 2, 3, 4}, {4, 5, 6, 7}, {8, 9, 10, 11}, {12, 13, 14, 15}}; int sum = 0; for (int i = 0; i < 4; i++) cout << matrix[i][1] << " "; return 0; } ``` a. 1 3 8 12 b. 3 6 10 14 c. 4 5 6 7 d. 1 2 3 4 e. 2 5 9 13

Computer Science & Information Technology

Tracing formulas draw ________ from a formula to cells that supply source data and to formulas that use the result of a formula

Fill in the blank(s) with correct word

Computer Science & Information Technology

Which of the following is the MOST secure to use to connect to a remote server?

A. Telnet B. rlogin C. rexec D. SSH

Computer Science & Information Technology