0 Comments
Answer:
a[j] = 2*a[j+1];
Step-by-step explanation:
The statement above assigns a new value to the element of the array indexed by j. The new value should be equal to twice the value stored in the next element of the array.