Answer:
Command: Systenoutprintln (a)
Output: 2.4
Explanation:
The output is going to be the result of the division, since double variables work with decimal parts.
12 divided by 5 is integer part 2 with modulus 2. So
12/5 = 2 mod 2 = 2 + 2/5 = 2 + 0.4 = 2.4.
The output is the result.
So
Command: Systenoutprintln (a)
Output: 2.4