Test Status
      COREJAVARANDOMTEST
      (A) int[] []x[];
      (B) int x[5];
      (C) int *x;
      (D) None of above
      (A) methods must not have any throws clauses
      (B) methods must not have any parameters
      (C) method should return any one of primitive data types
      (D) All the above
      (A) Reader
      (B) ObjectInputStream
      (C) ObjectReader
      (D) File
      (A) short s = 28;
      (B) float f = 2.3;
      (C) double d = 2.3;
      (D) int I = '1';
      (A) public void main();
      (B) public static void main(String args[]);
      (C) static public void main(String);
      (D) public static int main(String args[]);
      (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.