✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Trouver la valeur de A[1] après l’exécution du programme suivant.
Find the value of A[1] after running the following program.
int[] A = {0,2,4,1,3};
for(int i = 0; i < a.length; i++)
{
a[i] = a[(a[i] + 3) % a.length];
}