Q. What will be the output of the following Java code?
Code:class operators
{
public static void main(String args[])
{
int x = 8;
System.out.println(++x * 3 + " " + x);
}
}
β
Correct Answer: (D)
27 9