public class Arithmetic {
public static void main(String[] args){
short x = 10;
x = x * 5;
System.out.print(x);
}
}
Predict the output of the following code snippet

Posted on by