What is output of increment Java Code? class incrementTest { public static VOID main(String args[]) { INT a=4; System.out.print(++a * 5); } CHOOSE the correct option from below list (1)20 (2)25 (3)30 (4)35
Answer:-(2)25 Note:-operator ++ has done before multiplication