Question: What will be printed by the statements below? int a = 10; int b = 20; int count = 0; if (a > 5) {
What will be printed by the statements below?
int a = 10;
int b = 20;
int count = 0;
if (a > 5)
{ count ++;
}
else if (b > 5)
{ count ++;
}
else if (a > 10)
{ count ++;
}
else if (b > 10)
{ count ++;
}
System.out.print (count);
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
