What is the output of this program?

class Output

{

public static void main(String args[ ])

{

int a = 1;

int b = 2;

int c = 3;

a = 4;

b >>= 1;

c <<= 1;

a ^= c;

System.out.println(a + " " + b + " " + c);

}

}

1
2 1 6
2
2 2 3
3
2 3 4
4
3 3 6

Sponsored

hivanix.in

Visit

This quiz is brought to you by hivanix.in

🌐 Web App Development

Quick Navigation