What will be the result of following program segment
int a=5.b=10;
if(a>5)
if(b>10)
System.out.print(“b is”+b);
}
else
System.out.print("a is”+a);
Answers
Answered by
0
Answer:
n
What will be the result of following program segment
int a=5.b=10;
if(a>5)
if(b>10)
System.out.print(“b is”+b);
}
else
Similar questions