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

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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!