Q63
What will be the output of the following Java code? class operators public static void main(String args[]) int x = 8; System.out.println(++x * 3 + " " + x);
A.
24 8
B.
24 9
C.
27 8
D.
27 9
AnswerAnswer: Option D
Solution
Answer: Option D
No explanation is given for this question Let's Discuss on Board