What is output by the following Java code segment?

int temp = 180;

if (temp > 90)
{
System.out.println("This porridge is too hot.");

// cool down
temp = temp – (temp > 150 ? 100 : 20);
}
else
{
if (temp < 70)
{
System.out.println("This porridge is too cold.");

// warm up
temp = temp + (temp < 50 ? 30 : 20);
}
}

if (temp == 80)
System.out.println("This porridge is just right!");

a. This porridge is too hot.
b. This porridge is too cold.
This porridge is just right!
c. This porridge is just right!
d. None of the above.


d. None of the above.

Computer Science & Information Technology

You might also like to view...

The connection to the router’s console input is typically which of the following? (Select all that apply.)

a. RS-232 b. RJ-45 c. DB9 d. RJ-11

Computer Science & Information Technology

Which text direction option displays text from bottom to top and is aligned at the lower left edge of the column?

A) Vertical B) Horizontal C) Rotate all text 90° D) Rotate all text 270°

Computer Science & Information Technology

The New Style link is located on the ____________________, as shown in the accompanying figure.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

In general, animation may appear jerky and slow if each frame is displayed for more than about:

a. 1/30th of a second b. 1/15th of a second c. 1/4th of a second d. 1/2 of a second e. 1 second

Computer Science & Information Technology