Which of the following are legal lines of code?
- int w = (int)888.8;
- byte x = (byte)1000L;
- long y = (byte)100;
- byte z = (byte)100L;
Reveal answer
Fill a bubble to check yourself
Which of the following are legal lines of code?