Test Status
      COREJAVARANDOMTEST
      (A) Arrays in Java are essentially objects.
      (B) It is not possible to assign one array to another. Individual elements of array can however be assigned
      (C) Array elements are indexed from 1 to size of array.
      (D) If a method tries to access an array element beyond its range, a compile warning is generated.
      (A) An instance of a class is an object
      (B) Objects can access both static and instance data
      (C) Objects do not permit encapsulation
      (D) Object is the super class of all other classes
      (A) The program compiles and runs but does not print anything.
      (B) The program compiles and runs and prints 0
      (C) The program compiles and runs and prints 1
      (D) The program compiles and runs and prints 2
      (A) protected
      (B) implements Throwable
      (C) serializable
      (D) extends Throwable
      (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) compile and display â??Equalâ??
      (B) compile and display â??Not Equalâ??
      (C) cause a compiler error
      (D) compile and display NULL
      (A) boolean
      (B) void
      (C) public
      (D) Button
      (A) Java provides two operators to do left shift - << and <<<.
      (B) >> is the zero fill right shift operator.
      (C) >>> is the signed right shift operator.
      (D) For positive numbers, results of operators >> and >>> are same.