62.
Which of the following is true about Java system properties?

65.
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");
 Field fields[] = c.getFields();
 for (int i = 0; i < fields.length; i++)
     System.out.println(fields[i]);
   }
   catch (Exception e)
         {
               System.out.print("Exception");
         }
    }
}

66.
What is the use of Observable class?

Read More Section(Interfaces and Abstract Classes)

Each Section contains maximum 100 MCQs question on Interfaces and Abstract Classes. To get more questions visit other sections.