What elements does the array numbers contain after the following code is executed? int[] numbers = new

Question:

What elements does the array numbers contain after the following code is executed?

int[] numbers = new int[8];

numbers[1] = 4;

numbers[4] = 99;

numbers[7] = 2;

int x = numbers[1];

numbers[x] = 44;

numbers[numbers[7]] = 11; // uses numbers[7] as index

Fantastic news! We've Found the answer you've been seeking!

Step by Step Answer:

Related Book For  book-img-for-question
Question Posted: