Data Types and Variables
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);} }

Compilation Error
50
None of these
10

ANSWER DOWNLOAD EXAMIANS APP