What will the following Java code produce?
class increment {
public static void main(String args[])
{
int z = 4;
System. out. print(++z * 8);
}
}
1
40
2
49
3
51
4
57
What will the following Java code produce?
class increment {
public static void main(String args[])
{
int z = 4;
System. out. print(++z * 8);
}
}