Multiple choice

What is the output of the given code?

public class HelloWorld {
 public static void main(String[] args) {
  int x = 24;
  int y = 42;
  int z = 37;
  int a = 22;
  System.out.println(x & y ^ z | x~a);
 }
}

  1. 63

  2. -63

  3. 74

  4. -74

  5. Compiler error

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

This is the correct answer.