Question: Question 2 (1 point) Saved When the following code snippet is executed, what will be the output? public void test() { long l = 55;

Question 2 (1 point) Saved When the following code snippet is executed, what will be the output? public void test() { long l = 55; int i = 44; short s = 33; byte b = 22; i = (int); s = (short) i; b = (byte) s; System.out.println("I = " + 1); System.out.println("i = " + i); System.out.println("S = " + s); System.out.println("b = " + b); } 01 = 55 i = 44 S = 33 b = 22 OI = 22 i = 33 S = 44 b = 55 OI = 55 i = 55 S = 55 b = 55 The program does not compile
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
