1

What will be the output of the program??
int a=5,b=5;
System.out.println(++a+”,”+b–);
System.out.println(a+”,”+b);
System.out.println(++a+”,”+b++);
System.out.println(a+”,”+b);

  • 6,4
    5,5
    6,6
    6,6

  • 6,4
    6,5
    7,6
    7,6

  • 6,5
    6,4
    7,4
    7,5

  • 6,5
    6,5
    7,6
    7,6