What Will Be The Output Of The Following Java Programp Pre #761
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"); Method methods[] = c.getMethods(); for (int i = 0; i < methods.length; i++) System.out.println(methods[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 program?
import java.lang.reflect.*; class Additional_packages { public static void main(String args[]) { try { Class c = Class.forName("java.awt.Dimension"); Method methods[] = c.getMethods(); for (int i = 0; i < methods.length; i++) System.out.println(methods[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