1.

What is the output of this program?
public class Result 
{
public static void main(String args[])
{
Integer n = new Integer(260);
byte p = n.byteValue();
System.out.print(p);
}
}

A. 0
B. 1
C. 2
D. 3
E. 4
Answer» F.


Discussion

No Comment Found

Related MCQs