gabrielablue2147 gabrielablue2147 30-01-2024 Computers and Technology contestada Consider the following method. public static void printSome (int numi, int num2) { for (int i = 0; i < num1; i++) { if (i % num2 == 0 && i % 2 == 0) { System.out.print(i + " "); Which of the following method calls will cause " 0 10" to be printed? A. printSome(0, 20) B. printSome(5, 10) C. printSome (10, 5) D. printSome (20, 5) E. printSome (25, 5)