Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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;

Subject Name. Programming image text in transcribed
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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Concepts

Authors: David M Kroenke, David J Auer

6th Edition

0132742926, 978-0132742924

More Books

Students also viewed these Databases questions

Question

What do you understand machine to machine interaction?

Answered: 1 week ago

Question

differentiate the function ( x + 1 ) / ( x ^ 3 + x - 6 )

Answered: 1 week ago