What are the values of the elements in the array numbers after the following code is executed?

Question:

What are the values of the elements in the array numbers after the following code is executed?

int [] numbers = {10, 20, 30, 40, 50, 60, 70, 80, 90, 100}; for (int i = 0; i < 9; i++) { numbers [i] = numbers [i + 1];

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

Step by Step Answer:

Related Book For  answer-question
Question Posted: