Given:
public class Main { public static void main(String[] args) { int x = 12; int a = 5; int b = 7; System.out.println(x/a + " " + x/b); } }
What is the result?
Choose all that apply.
A is correct.
When dividing ints, remainders are always rounded down.