clarawulf3915 clarawulf3915 10-01-2024 Computers and Technology contestada What is the output of this for loop? for(int i = 10; i > 2; i -= 3) System.out.println(i); 1) 10 7 4 2) 10 7 4 1 3) 1 2 3 4) 10 8 6 4 2