Test Status
      CORETEST10
      (A) The member variable called size
      (B) The member variable called length
      (C) The method size() returns the number of characters.
      (D) The method length() returns the number of characters.
      (A) The default constructor initializes local variables.
      (B) The default constructor invokes the constructor of the superclass.
      (C) The default constructor initializes the instance variables declared in the class.
      (D) When class has only constructor with parameter, the compiler creates a Default constructor
      (A) A static inner class does not require an instance of the enclosing class.
      (B) A static inner class cannot be a static member of outer class.
      (C) It must extend enclosing class.
      (D) Itâ??s variables and methods must be static.
      (A) An import statement, if defined, must always be the first non-comment statement of the file.
      (B) private members are accessible to all classes in the same package.
      (C) An abstract class can be declared as final.
      (D) Local variables cannot be declared as static.
      (A) "odd" will always be output.
      (B) "even" will always be output.
      (C) Compilation fails.
      (D) "odd" will be output for odd values of x, and "even" for even values.
      (A) The member variable called size.
      (B) The member variable called length
      (C) The method size() returns the number of characters.
      (D) The method length() returns the number of characters.
      (A) Int data = (int) Math.floor(b);
      (B) Int data = (int) Math.abs(b);
      (C) Int data = (int) Math.ceil(b);
      (D) Int data = (int) Math.min(b);
      (A) Calling the notify method on an object.
      (B) Calling the start method on another Thread object.
      (C) Calling a yield method.
      (D) Calling wait method on an object.
      (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) data has the value of true
      (B) The code will not compile.
      (C) data has the value of false
      (D) data has the value of null