✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
What is the value of myArray[4] after the execution of the following code:
int[] myArray = new int[5];
for (int j = 0; j < 5; j++) myArray[j] = 2 * j - 1;