adplus-dvertising
frame-decoration

Question

What is the output of this program?
    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");
             }
        }
    }

a.

Program prints all the constructors of ‘java.awt.Dimension’ package

b.

Program prints all the methods of ‘java.awt.Dimension’ package

c.

Program prints all the data members of ‘java.awt.Dimension’ package

d.

program prints all the methods and data member of ‘java.awt.Dimension’ package

Answer: (c).Program prints all the data members of ‘java.awt.Dimension’ package

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What is the output of this program?

Similar Questions

Discover Related MCQs

Q. Which of these type parameters is used for a generic class to return and accept any type of object?

Q. Which of these type parameters is used for a generic class to return and accept a number?

Q. Which of these is an correct way of defining generic class?

Q. Which of the following is an incorrect statement regarding the use of generics and parameterized types in Java?

Q. Which of the following reference types cannot be generic?

Q. A java interface can contain _______.

Q. Which of the following is a correct interface?

Q. Which of the following classes directly implement Set interface?

Q. Which is the correct way to inherit and implement the interface?

Q. Which of the following is true about methods in an interface in java?

Q. Can "abstract" keyword be used with constructor, Initialization Block, Instance Initialization and Static Initialization Block.

Q. Package in Java is a mechanism to encapsulate a ______________.

Q. Package names and directory structure are closely related.

Q. An _______________ statement can be used to access the classes and interface of a different package from the current package.

Q. Which of the following packages is used to includes classes to create user interface like Button and Checkbox?

Q. Which of the following packages is used to includes utility classes like Calendar, Collection, Date?

Q. Which of the following is the correct way of importing an entire package "pkg"?

Q. Which of the following is false statement about package in java?

Q. Packages that are inside another package are the _________

Q. An interface in Java is like a 100% ____.