What is the output of the following code?int a = 4;int b = 3…
What is the output of the following code?int a = 4;int b = 3;int c = 2;int d = a++ * –b + (c *= a) – b % c + a / c;System.out.println(a + “,” + b + “,” + c + “,” + d);Choose the exact output.