What Will Be The Output Of The Following Java Codep Pre #759
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"); Field fields[] = c.getFields(); for (int i = 0; i < fields.length; i++) System.out.println(fields[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"); Field fields[] = c.getFields(); for (int i = 0; i < fields.length; i++) System.out.println(fields[i]); } catch (Exception e) { System.out.print("Exception"); } } }
Program prints all the constructors of 'java.awt.Dimension' package
Program prints all the methods of 'java.awt.Dimension' package
Program prints all the data members of 'java.awt.Dimension' package
program prints all the methods and data member of 'java.awt.Dimension' package