Question: Question 1 What output is produced by the following code fragment? int num = 25, MAX = 50; if (num >= MAX) System.out.println(apple); System.out.println(orange); System.out.println(pear);
Question 1
What output is produced by the following code fragment?
int num = 25, MAX = 50;
if (num >= MAX)
System.out.println("apple");
System.out.println("orange");
System.out.println("pear");
|
| A. | apple orange pear |
|
| B. | orange pear |
|
| C. | pear |
|
| D. | Nothing will be printed out. |
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
