Given the following lines of code, answer the 5 questions below: int[] numbers =
ID: 656069 • Letter: G
Question
Given the following lines of code, answer the 5 questions below:
int[] numbers = new int[15];
int numElements = 0;
for(int i=0; i<6; i++)
{
numbers[numElements] = i+1;
numElements++;
}
System.out.println(numbers[0]);
System.out.println(numbers.length);
System.out.println(numbers[6]);
What is the capacity of the umbers" array?
A. 5 B. 6 C. 15 D. unknown
What is the e ective size of the umbers" array?
A. 5 B. 6 C. 15 D. unknown
What is output by the rst print statement?
A. 0 B. 1 C. 15 D. causes runtime error
What is output by the second print statement?
A. 6 B. 14 C. 15 D. causes runtime error
What is output by the third print statement?
A. 0 B. 6 C. 7 D. causes runtime error
Explanation / Answer
Capacity:
c.15
e ective size:
A.5
output:
A.0
second output:
A.6
third output
C.7
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.