+91-85006-22255
What will be the output of the following program?
public class Sketch { public static void main(String args[]) { int a = 0152; a *= --a / 2 * 2; System.out.println("a=" + a); }}
Topic: Arithmetic Compound Assignment Operators In Java
Read this topic Take test on this topic
Open In App