laywinters760 laywinters760 22-01-2024 Computers and Technology contestada Consider the following method and the client code. What is true after the client code executes? private static int m(int x, int y) y = x; x = 0; return y; int num1 = 4, num² = 9; num² = m (num1, num²); *a.* num1 = 0, num² = 4 *b.* num1 = 0, num² = 9 *c.* num1 = 4, num² = 4 *d.* num1 = 4, num² = 9 1) num1 = 0, num² = 4 2) num1 = 0, num² = 9 3) num1 = 4, num² = 4 4) num1 = 4, num² = 9