Question: 3. Write the output of a program. (1 Mark) Public class PrecedenceTest { public static void main (String []args) { int x = 30; int

3. Write the output of a program. (1 Mark) Public class PrecedenceTest { public static void main (String []args) { int x = 30; int y = 2; int z = 3; int a = x/y+z; System.out.println("a = " + a); int b = x/y* z; System.out.println("b="+b); int c = x* y + z; System.out.println("c = "+c); int d = x/(y +z); System.out.println("d=" + d); } OUTPUT
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
