class Output 
{
public static void main(String args[])
{
Integer i = new Integer(35);
byte x = i.byteValue();
System.out.print(x);
}
}
What will be the output of the following Java code?

Posted on by