निम्नलिखित जावा कोड का आउटपुट क्या होगा?
class increment {
public static void main(String args[])
{
int z = 4;
System. out. print(++z * 8);
}
}
1
40
2
49
3
51
4
57
निम्नलिखित जावा कोड का आउटपुट क्या होगा?
class increment {
public static void main(String args[])
{
int z = 4;
System. out. print(++z * 8);
}
}