Question: What output is displayed when the following code is run? int num1 = 18; int num2 = 32; int num3 = 24; 0; int
What output is displayed when the following code is run? int num1 = 18; int num2 = 32; int num3 = 24; 0; int num4 = if (num1 > num2) { num4 = 4; } else { } if (num1 > num3) { num4 = 5; } System.out.println(num4);
Step by Step Solution
3.38 Rating (157 Votes )
There are 3 Steps involved in it
The output of the code in the image is 5 The code fi... View full answer
Get step-by-step solutions from verified subject matter experts
