Computer Science, asked by kv922679, 2 days ago

class increment [ 1]

{

public static void main(String args[])

{

int g = 3;

System.out.print(++g * 8);

}

}

Write output.​

Answers

Answered by rohitkumarsingh1227
1

Answer:

Answer is 32

because g becomes 4 and 8×4= 32

Answered by pgshamith
2

Answer:

output = 24

hope it helped pls mark me as brainiest

Explanation:

g * 8

3 * 8 = 24

Similar questions