Answer:
Command: System.out.println (a)
Output: 2
Step-by-step explanation:
The output is going to be only the integer part of the division.
12 divided by 5 is integer part 2 with modulus 2. So
12/5 = 2 mod 2
The output is only the integer part. So
Command: System.out.println (a)
Output: 2