What Will Be The Output Of The Following Java Codep Pre #758
What will be the output of the following Java code?</p> <pre><code class="language-java" line="1"> import java.lang.reflect.*; class Additional_packages { public static void main(String args[]) { try { Class c = Class.forName("java.awt.Dimension"); Constructor constructors[] = c.getConstructors(); for (int i = 0; i < constructors.length; i++) System.out.println(constructors[i]); } catch (Exception e) { System.out.print("Exception"); } } }</code></pre>
This multiple choice question (MCQ) is related to the book/course gs gs128 Java. It can also be found in gs gs128 Java Util Collections Framework - Java Remote Method Invocation (RMI) - Quiz No.1.
What will be the output of the following Java code?
import java.lang.reflect.*; class Additional_packages { public static void main(String args[]) { try { Class c = Class.forName("java.awt.Dimension"); Constructor constructors[] = c.getConstructors(); for (int i = 0; i < constructors.length; i++) System.out.println(constructors[i]); } catch (Exception e) { System.out.print("Exception"); } } }
Program prints all the constructors of 'java.awt.Dimension' package
Program prints all the possible constructors of class 'Class'
Program prints "Exception"
Runtime Error