emilyjanae6345 emilyjanae6345 20-02-2024 Computers and Technology contestada What does the call to the method somemethod(3,1) output? public int somemethod(int x, int y) int sum = 0; while (x < 10) sum += x % y; x++; y++; return sum; a) 8 b) 12 c) 10 d) 15