Answer:
a [ j ] = 2 * a [ j + 1 ];
Step-by-step explanation:
For an element at index j, the next element is at index j+1.
Therefore, given an array a, to initialize the element at index j to twice the value of the next element, the statement is as follows:
a [ j ] = 2 * a [j + 1]
or
a [ j ] = a [j + 1] * 2
Hope this helps!!