Which of the following statements are true?
A) System.out.println(-1 >> 1); will output -1
B) System.out.println(-1 << 1); will output 0
C) System.out.println(2 >> 1); will output 4
D) System.out.println(2 << 1); will output 1
E) System.out.println(3 << 1); will output 1