Multiple choice

If n is even, and assuming that all A[i] are distinct, what what will be the result of the execution of the code given below: for (i = 0; i < n; i++) A[i] = A[n+1-i]?

  1. It results in 2 copies of each value data.

  2. The values remain unchanged.

  3. The array reverses.

  4. None of the above.

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

null