A
Q. What will be output of following program?
public class Test{
public static void main(String[] args){
byte b=127;
b++;
b++;
System.out.println(b);
}
}
- Correct Answer - Option(C)
- Views: 11
- Filed under category Java
- Hashtags:
Discusssion
Login to discuss.