Arrays as parameters
Similar to when passing objects as parameters
Declaration: z(int[] list)Call: z(a) where a is declared int[] z can change elements of the array, but not array reference itself
Can also pass elements of the array as parametersDeclaration: q(int x)Call: q(a[3])