+91-85006-22255
What will be the output of the following program?
public class BitShift { public static void main(String[] args) { int num = 0x80000000; System.out.print(num + " and "); num = num >>> 31; System.out.println(num); }}
Topic: Java Bitwise Operators
Read this topic Take test on this topic
Open In App