P
Q. 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 obj = new box();
System.out.println(obj);
}
}
- Correct Answer - Option(D)
- Views: 48
- Filed under category JAVA
Discusssion
Login to discuss.