What will be the output of the given program? class BitShift { public static void main(String [] args) { int x = 0x80000000; System.out. print(x + and) ; x = x >>> 31; System.out. println(x); } }
Reveal answer
Fill a bubble to check yourself