Answer: −
3
<
x
<
5
Step-by-step explanation:
Answer:
That's too small for me
Step-by-step explanation:
Answer:
idk
Step-by-step explanation:
Answer:
27
Step-by-step explanation:
int x = 9;
int y = 3;
if (x >= y)
if (y > 0)
x = x * y;
else if (y < 4)
x = x - y;
First, the first if statement check for the value of x>=y which is true. The another if-statement check if y>0, which is true and it execute the statement x = x * y that is x = 9 * 3 and x = 27.
The else-if block is not executed because the if-statement attached to it has been executed already.