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 | a);
}
}
Reveal answer
Fill a bubble to check yourself