A
Q. What will be the output of the following Java program?
class X
{
int a;
double b;
}
class Y extends X
{
int c;
}
class Output
{
public static void main(String args[])
{
X a = new X();
Y b = new Y();
Class obj;
obj = a.getClass();
System.out.print(obj.getName());
}
}
- Correct Answer - Option(A)
- Views: 10
- Filed under category Java
- Hashtags:
Discusssion
Login to discuss.