CHALLENGE ACTIVITY 391990.2618508.qx3zqy7 Jump to level 1 Check 3.11.1: Enter the output of the integer expressions. pub
Posted: Mon Jun 06, 2022 2:02 pm
CHALLENGE ACTIVITY 391990.2618508.qx3zqy7 Jump to level 1 Check 3.11.1: Enter the output of the integer expressions. public class CombinedOutput { public static void main(String[] args) { int x; int y; x = 7; y = x & 3; System.out.print (x + " " + y); 2 1 Next } Type the program's output 3 4