Multiple choice

What is the output of the given program?

public class MyClass {
 public static void main(String[] args) {
  System.out.println(128 >> 4 >> 3 >> 2); //Line 1
 }
}

  1. 2

  2. 4

  3. 0

  4. Divide by zero exception

  5. Error at line 1

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

This is the correct answer.