Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

11. Suppose that a variable a is declared as double a = 3.14159. What do each of the following print? a. System.out.println(a); b. System.out.println(a +

11. Suppose that a variable a is declared as double a = 3.14159. What do each of the following print?

a. System.out.println(a);

b. System.out.println(a + 1);

c. System.out.println(8 / (int) a);

d. System.out.println(8 / a);

e. System.out.println((int) (8 / a));

Explain each outcome.

public class Hw2Ans11

{

public static void main(String[] args)

{

double a = 3.14159;

System.out.println(a);

System.out.println(a + 1);

System.out.println(8 / (int) a);

System.out.println(8 / a);

System.out.println((int) (8 / a));

}

}

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

More Books

Students also viewed these Databases questions

Question

Can you think of an explanation other than ESP for that experience?

Answered: 1 week ago

Question

Describe the five elements of the listening process.

Answered: 1 week ago