Test Status
      CORETEST8
      (A) String str = "Welcome to Java Programming"
      (B) String str = new String("Welcome to Java Programming")
      (C) String str; str = "Welcome to Java Programming"
      (D) String str; str = new String ("Welcome to Java Programming")
      (A) Employee should be the base class of Manager class.
      (B) Manager should be the base class of Employee class.
      (C) Manager class should include the Employee class as a data member.
      (D) Employee class should include Manager class as a data member.
      (A) A super class is a sub set of a sub class
      (B) class ClassTwo extends ClassOne means ClassOne is a subclass
      (C) class ClassTwo extends ClassOne means ClassTow is a super class
      (D) the class Class is the super class of all other classes in Java.
      (A) The method converts an integer to a String.
      (B) The method is used to convert String to an integer, assuming that the String represents an integer.
      (C) The method is used to convert String to Integer class, assuming that the String represents an integer.
      (D) The method converts the Integer object to a String.
      (A) Non daemon thread
      (B) Daemon thread
      (C) Thread with dead state
      (D) None of the above
      (A) The run() method should be directly invoked on the Object.
      (B) The start() method should be directly invoked on the Object.
      (C) The init() method should be directly invoked on the Object.
      (D) The creation of the object using the new operator would create a new thread and invoke its run() method.
      (A) Dead state
      (B) Waiting state
      (C) Running state
      (D) Beginning state
      (A) MIN_PRIORITY (which is defined as 1 in the Thread class.)
      (B) NORM_PRIORITY (which is defined as 5 in the Thread class.)
      (C) MAX_PRIORITY (which is defined as 10 in the Thread class.)
      (D) A thread inherits the priority of its parent thread.