1.

What is the output of this program? class box { int width; int height; int length; } class mainclass { public static void main(String args[]) { box obj1 = new box(); box obj2 = new box(); obj1.height = 1; obj1.length = 2; obj1.width = 1; obj2 = obj1; System.out.println(obj2.height); } }

A. 1
B. 2
C. Runtime error
D. Garbage value
Answer» B. 2


Discussion

No Comment Found