Q. What is the output of the Java code snippet?
Code:
byte b = 25; b++; b = b+1; System.out.println(b);
β
Correct Answer: (D)
Compiler error
byte b = 25; b++; b = b+1; System.out.println(b);
You must be Logged in to update hint/solution