Give the output of following code:- [2]
int a=20,b=15;
if(a>10)
{
a++;
b++;
}
System.out.println(a+” ”+b);
Answers
Answered by
1
Answer:
20,15
Explanation:
System.out.println(a+d) will out put the arithmetic calculation
Similar questions