Originally posted by anita dhar: what will be the o/p of this prg public class Test { public static void main(String[] args) { int j = 10; j <<= 2; j = (j - 1) >>> 3;
System.out.println("j = " + j); } }
First of all, what output have you got it when you run?