Int[] arr = {1, 2, 3, 4, 5};
int[] copy = arr;
copy[4] = 2;
After this code, what is the value of arr[4]?

Solved
Show answers

Ask an AI advisor a question