Q. What is the output of the Java program?
Code:byte b = 0b0000101; System.out.print(b + ","); b &= 0b00001111; System.out.print(b);
β
Correct Answer: (B)
5,5
byte b = 0b0000101; System.out.print(b + ","); b &= 0b00001111; System.out.print(b);
You must be Logged in to update hint/solution