Problems: Consider the following method. public static void ifElseMystery(int a, int b) { if (a <= b) { a = a + 5; b = b * 2; } else { b = b + 5; } if (a < b) { a = a + 2; } System.out.println(a + " " + b); } Problem 1 : ifElseMystery(4, 4); Problem 2 : ifElseMystery(4, 5); Problem 3 : ifElseMystery(10, 5); Problem 4 : ifElseMystery(7, 4); Key: Problem 1 : 9 8 Problem 2 : 11 10 Problem 3 : 10 10 Problem 4 : 9 9 Explanation of scores: 0 - Your answer for this problem was incorrect. Try the if/else problem again, and ask your TA if you are still unsure about how to solve if/else mystery problems. Also, Practicum has lots of if/else problems that you can practice at https://olio.cs.washington.edu/csed 1 - Your answer for this problem was partially correct -- one of your number was correct, and one was incorrect. 2 - Your answer was correct. Keep up the good work!