Solved

What Is Output by the Following Java Code Segment

Question 12

Multiple Choice

What is output by the following Java code segment?
int temp = 200;
If (temp > 90) {
System.out.println("This porridge is too hot.") ;
}
If (temp < 70) {
System.out.println("This porridge is too cold.") ;
}
If (temp == 80) {
System.out.println("This porridge is just right!") ;
}


A) This porridge is too hot.
B) This porridge is too cold.
C) This porridge is just right!
D) None of the above.

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions