1

Output ??
int a=5,b=10,temp;
temp=a;
a=b;
b=temp;
System.out.println(“a=”+a+”,b=”+b);

  • a=5,b=10

  • a=10,b=5

  • a=5,b=5

  • Syntax Error