Page 1 of 1

What will be the output of the following Java code?

Posted: Wed Jul 13, 2022 7:45 pm
by answerhappygod
class increment { public static void main(String args[]) { int g = 3; System.out.print(++g * 8); } }
a) 32
b) 33
c) 24
d) 25