2.3.7.The bitwise operator | provides OR operations
//For OR operations, 0 OR 0 produces 0. Any other combination produces 1.
//In the OR operation, you get a 1 result if either the first operand or the second operand (or both) is 1.
public class MainClass { public static void main(String[] argv) { int i = 2; int b = 4;