What is the output of this program? class conversion { public static void main(string args[]) { double a = 295.04; int b = 300; byte c = (byte) a; byte d = (byte) b; system.out.println(c + " " + d); } }?
Answers
Answered by
0
Maybe no compiling as a byte can only contain value upto 127
Similar questions