P
Q. What will be the output of the following Java program?
class Output
{
public static void main(String args[])
{
Integer i = new Integer(257);
byte x = i.byteValue();
System.out.print(x);
}
}
- Correct Answer - Option(B)
- Views: 36
- Filed under category JAVA
Discusssion
Login to discuss.