class BitwiseOR{ public static void main(String args[]){ System.out.println(" | OR opeartor"); int x = 0 | 0; System.out.println("0 | 0 = " + x); } }