What Will Be The Output Of The Following Java Programp Pre #1093
What will be the output of the following Java program?</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 Interfaces Packages - Core Java API Packages - Quiz No.1.
What will be the output of the following Java program?
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