The optional ____ keyword in the syntax of the ReDim statement tells the computer to keep the current array values when the size of the array changes.

A. Keep
B. Protect
C. Save
D. Preserve


Answer: D

Computer Science & Information Technology

You might also like to view...

Which of the following statements a), b) or c) is false?

a. Lists can contain other lists as elements. b. To identify a particular table element, we specify two indices—by convention, the first identifies the element’s column, the second the element’s row. c. Multidimensional lists can have more than two indices. d. Each of the above statements is true.

Computer Science & Information Technology

Write a driver program to test your Student class created in question #14.

What will be an ideal response?

Computer Science & Information Technology

Find the error(s) below:

Assume that the variable counter is declared and initialized to 1. The loop should execute five times, appending the numbers 1–5 to a JTextArea. ``` 1 while ( counter < 5 ) 2 { 3 numbersJTextArea.append( String.valueOf( counter ) ); 4 counter++; 5 } ```

Computer Science & Information Technology

Find another slide transition in PowerPoint or Keynote or some other presentation software, and implement it as a movie.

What will be an ideal response?

Computer Science & Information Technology