Question: Subject Name. Programming 3. Write the output of a program. (1 Mark) Public class Precedence Test { public static void main(String[Jargs) int x = 30;
3. Write the output of a program. (1 Mark) Public class Precedence Test { public static void main(String[Jargs) 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: 4. Write a Java program to do the following: (3 Marks) Declare variables x=5, y=7, using double data type. > Also, declare variable Area, using long data type. Find the Area of Tringle using Area = 0.5*x*y. Display the result in new line using printin
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
