Ask Question
24 March, 14:33

What is stored in alpha after the following code executes? int[] alpha = new int[5]; int j; for (j = 0; j 2) alpha[j - 1] = alpha[j] + 2; }

1. alpha = {1, 2, 3, 4, 5}

2. alpha = {4, 5, 6, 7, 9}

3. alpha = {1, 5, 6, 7, 5}

4. None of these

+3
Answers (1)
  1. 24 March, 16:22
    0
    Option A.
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “What is stored in alpha after the following code executes? int[] alpha = new int[5]; int j; for (j = 0; j 2) alpha[j - 1] = alpha[j] + 2; } ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers