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 bitwise OR operation compares each bit position: 4 is 100 in binary, 3 is 011. The OR operation results in 111 (binary) which equals 7 in decimal. The | operator performs bitwise OR.