Test Status
      COREJAVARANDOMTEST
      (A) Reader
      (B) ObjectInputStream
      (C) ObjectReader
      (D) File
      (A) The class does not compile because the top level class cannot be protected.
      (B) The program prints "abc"
      (C) The program prints "abcabc"
      (D) The program does not compile because statement "test = test + test" is illegal.
      (A) Dead state
      (B) Waiting state
      (C) Running state
      (D) Beginning state
      (A) The default char data type is a space( â?? â?? ) character.
      (B) The default integer data type is â??longâ?? and real data type is â??floatâ??
      (C) The default integer data type is â??intâ?? and real data type is â??doubleâ??
      (D) The default integer data type is â??intâ?? and real data type is â??floatâ??
      (A) boolean
      (B) void
      (C) public
      (D) Button
      (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) The elements in the collection are unique.
      (B) The collection is guaranteed to be immutable
      (C) The elements in the collection are ordered.
      (D) The elements in the collection are synchronized.
      (A) short s = 28;
      (B) float f = 2.3;
      (C) double d = 2.3;
      (D) int I = '1';
      (A) void m() throws IOException{}
      (B) void m() throw IOException{}
      (C) void m(void) throws IOException{}
      (D) void m() {} throws IOException
      (A) ArrayList is a sub class of Vector
      (B) HashTable is a sub class of Dictionary
      (C) LinkedList is a subclass of ArrayList
      (D) Vector is a subclass of Stack