A
Q. What will be output of the following program code?
public class Test{
public static void main(String[] a){
short x = 10;
x = x*5;
System.out.print(x);
}
}
- Correct Answer - Option(C)
- Views: 8
- Filed under category Java
- Hashtags:
Discusssion
Login to discuss.