Hi i want to know the output of this code. The code is in java. Reply quick Thank you. Class Number { int x; void store (Number num) { num. x++ ; } } Class ManiPNumber { public static void main(string args[]) { Number n=new Number(); n . x=10; n . store(n); System.out.println (n.x); } } Code (markup):