What will be the output of the following Java program?

class rightshift_operator 
{
public static void main(String args[])
{
int x;
x = 10;
x = x 1;
System.out.println(x);
}
}

Posted on by