show the outful of following code
int a = 5, b = 10;
if(a>5)
{
System. out. println("b is "+b);
}
else
{
System. out. println("a is "+a);
}
Answers
Answered by
0
Answer:
the output of the code will a is 5
Similar questions