Examveda
Examveda

What will be the output of the following Java program?
class increment 
{
    public static void main(String args[]) 
    {        
         int g = 3;
         System.out.print(++g * 8);
    } 
}

A. 25

B. 24

C. 32

D. 33

Answer: Option C


This Question Belongs to Java Program >> Operators

Join The Discussion

Related Questions on Operators