What is returned by method aplus given the client code shown below?
public static int aplus( int[] ray )
{
int stuff = 0;
for(int i = 0; i<ray.length; i++)
if(ray[i] % 2 == 0)
stuff = stuff + ray[i];
return stuff;
}
//client code
int[] sRay = {9,9,7,1,2,3,4,5,6,2,2,3,7,3};
System.out.println( aplus(sRay) );