-
What is the output of this program?
import java.lang.reflect.*;
public class Additional_packages_Example
{
public static void main(String args[])
{
try
{
Class obj = Class.forName("java.awt.Dimension");
Constructor constructors[] = obj.getConstructors();
for (int k = 0; k < constructors.length; k++)
System.out.println(constructors[k]);
}
catch (Exception e)
{
System.out.print("Exception");
}
}
}
-
- Program prints all the possible constructors of class ‘Class’
- Program prints all the constructors of ‘java.awt.Dimension’ package
- Runtime Error
- Program prints “Exception”
- None of these
Correct Option: B
Output:
public java.awt.Dimension()
public java.awt.Dimension(int,int)
public java.awt.Dimension(java.awt.Dimension)