Multiple choice technology What is the result of the following operation? System.out.println(4 | 3); 6 0 1 7 Reveal answer Fill a bubble to check yourself D Correct answer Explanation The | operator is bitwise OR. 4 in binary is 100, 3 in binary is 011. OR operation: 100 | 011 = 111 which is 7 in decimal. Each bit is set to 1 if either operand has a 1 in that position.