Consider the code segment below. Which of the following statements is false?
```
int[] g;
g = new int[23];
```
a. The value of g[3] is -1.
b. The first statement declares an array reference.
c. The second statement creates the array.
d. g is a reference to an array of integers.
a. The value of g[3] is -1.
Computer Science & Information Technology
You might also like to view...
A relationship between tables in which a record in one table has many matching records in the second table is a ________
A) 1:N B) M:N C) 1:1 D) There would not be a relationship between the two tables.
Computer Science & Information Technology
Subtotal rows that are totaled and summarized are referred to as ________ data
A) detail B) summary C) actual D) subtotal
Computer Science & Information Technology