Consider the following table for this question. 2 4 6 8 10 12 14 16 18 20 22 24 26 28 30 32 34 36 38 40 This array was d
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
Consider the following table for this question. 2 4 6 8 10 12 14 16 18 20 22 24 26 28 30 32 34 36 38 40 This array was d
question. 2 4 6 8 10 12 14 16 18 20 22 24 26 28 30 32 34 36 38 40 This array was declared with this statement: int[] [] colors = new int[4][5]; Write a single line of code to create a variable named green and save the value in the array position indicated by the green box in the above image to that variable. Note: Use only one java statement to accomplish both tasks.
Consider the following table for this