Multiple choice technology programming languages 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 performs bitwise OR: 4 (binary 100) OR 3 (binary 011) = 111 (binary) = 7 (decimal). Each bit position is set to 1 if either operand has a 1 in that position.