Question: What output is displayed when the following code is run? int num 1 = 1 8 ; int num 2 = 3 2 ; int

What output is displayed when the following code is run?
int num1=18;
int num2=32;
int num3=24;
int num4=0;
if (num1> num2){
num4=4;
} else {
if (num1> num3){
num4=5;
}
}
System.out.println(num4);
4
24
0
5

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!