Q. What is the output of the Java code snippet?
Code:
int a = 260; byte b= (byte)a; System.out.println(b);
β
Correct Answer: (B)
4
int a = 260; byte b= (byte)a; System.out.println(b);
You must be Logged in to update hint/solution