A
Q. What will be the output for the below code ?
Code:
public class Test
{
public static void main(String[] args)
{
byte i = 128;
System.out.println(i);
}
}
{
public static void main(String[] args)
{
byte i = 128;
System.out.println(i);
}
}
- Correct Answer - Option(C)
- Views: 15
- Filed under category Java
- Hashtags:
Discusssion
Login to discuss.