darliner5348 darliner5348 24-05-2023 Computers and Technology contestada For the questions below, use the following recursive method. public int question1_2(int x, int y) if (x == y) return 0; else return question1 2(x-1, y) + 1; If the method is called as question 1 2(8,5), what is returned?