give the output of the program snippet.
int a = 10, b =12;
if(a>=10)
a++;
else
++b;
System.out.println(" a = " + a "and b =" +b);
it is not maths it is computer
Answers
Answered by
3
Answer:
if true then output is 10
if false then output is 13
Similar questions