Q. What is the error in this code? byte b = 50; b = b * 50;
β
Correct Answer: (B)
* operator has converted b * 50 into int, which can not be converted to byte without casting.
You must be Logged in to update hint/solution