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