What do the following statements do?
```
double[] array;
array = new double[14];
```
a. Create a double array containing 13 elements.
b. Create a double array containing 14 elements.
c. Create a double array containing 15 elements.
d. Declare but do not create a double array.
b. Create a double array containing 14 elements.
You might also like to view...
Answer the following statements true (T) or false (F)
1. Standard identifiers cannot be redefined by the programmer 2. The C language is case sensitive. 3. The C language requires the programmer to declare every variable used in a program. 4. A statement may not extend over multiple lines.
A MAC address contains 32 digits
Indicate whether the statement is true or false
Never start a computer with removable media inserted in the computer unless you are certain the media is uninfected.
Answer the following statement true (T) or false (F)
When a numeric variable is concatenated to a String, the entire expression becomes a(n) ____.
A. int B. constant C. method D. String