What will be the output?
class program {
public static void show () {
byte b = 10;
int i = 20;
b = i*b;
System.out.println("Result:"+b);
}
public static void main(string args[]){
show();
}
}


Posted on by