Java-Bitwise OR
Bitwise OR( | ) The Bitwise OR, is represented by the symbol | (vertical bar) and is surrounded by two integer operands. The result of OR operation is 1 if at least one of the bits has a value 1; otherwise it is zero. Program Program Source public class Javaapp { public static void main(String[] … Read more…