Sample Loop
Fill in: values of A[] and i. Label each row as loop invariant: Initialization, Maintenance, or Termination Label each row as loop invariant: True or False.
Fill in:
int i = 0;
while( i < 3 ) { A[i]=2*A[i]; i = i + 1;}