Practice Declarations and Access Control –
What will be the output of the program?
class BitShift {
public static void main(String [] args){
int x = 0x80000000;
System.out.print(x + " and ");
x = x >>> 31;
System.out.println(x);
}
}