Q. What is the output of the following?
Code:Integer integer = new Integer(4);
System.out.print(integer.byteValue());
System.out.print("-");
int i = new Integer(4);
System.out.print(i.byteValue()
β
Correct Answer: (C)
The code does not compile.