Computer Science, asked by nikitapal2342, 1 year ago

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 ameerhamzah78pdju21
0

Maybe no compiling as a byte can only contain value upto 127

Similar questions