Test Status
      COREJAVARANDOMTEST
      (A) The program does not compile because x, y and name are not initialized.
      (B) The program throws a runtime exception as x, y, and name are used before initialization.
      (C) The program prints pnt is 0 0.
      (D) The program prints pnt is null 0 0.
      (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 range of values is compiler dependent.
      (B) -231 to 231 - 1
      (C) 231-1 to 231
      (D) -215 to 215 - 1
      (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
      (A) AbstractSet extends Set
      (B) LinkedList extends List
      (C) HashSet extends AbstractSet
      (D) WeakHashMap extends HashMap
      (A) float
      (B) double
      (C) Float
      (D) Double
      (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) To check whether the subclass method is overrides from the superclass or not
      (B) To say to the compiler not to execute this override method.
      (C) To say to compiler that this method is deprecated
      (D) None of the above
      (A) to remove the lock on the thread
      (B) when there is a single thread
      (C) to make a thread in sleep mode
      (D) when we want to prevent any other multiple thread to act an same object
      (A) The object still under lock in both the cases
      (B) sleep() the lock is removed ,wait() still under lock
      (C) sleep() still under lock ,wait() the lock is removed
      (D) Sleep() and wait(),for both the method lock is removed
      (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);