Vidyalelo
Java Programming · Q94

Constructors and Methods

Programming · Java Programming · question 94

Q94

What will be the output of the following Java 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
Answer
B.
2
C.
Runtime error
D.
Garbage value

Answer: Option A

Solution

Answer: Option A
No explanation is given for this question Let's Discuss on Board