logo

CuriousTab

CuriousTab

Discussion


Home Java Programming Declarations and Access Control Comments

  • Question
  • You want subclasses in any package to have access to members of a superclass. Which is the most restrictive access that accomplishes this objective?


  • Options
  • A. public
  • B. private
  • C. protected
  • D. transient

  • Correct Answer
  • protected 

    Explanation
    Access modifiers dictate which classes, not which instances, may access features.

    Methods and variables are collectively known as members. Method and variable members are given access control in exactly the same way.

    private makes a member accessible only from within its own class

    protected makes a member accessible only to classes in the same package or subclass of the class

    default access is very similar to protected (make sure you spot the difference) default access makes a member accessible only to classes in the same package.

    public means that all other classes regardless of the package that they belong to, can access the member (assuming the class itself is visible)

    final makes it impossible to extend a class, when applied to a method it prevents a method from being overridden in a subclass, when applied to a variable it makes it impossible to reinitialise a variable once it has been initialised

    abstract declares a method that has not been implemented.

    transient indicates that a variable is not part of the persistent state of an object.

    volatile indicates that a thread must reconcile its working copy of the field with the master copy every time it accesses the variable.

    After examining the above it should be obvious that the access modifier that provides the most restrictions for methods to be accessed from the subclasses of the class from another package is C - protected. A is also a contender but C is more restrictive, B would be the answer if the constraint was the "same package" instead of "any package" in other words the subclasses clause in the question eliminates default.


    Declarations and Access Control problems


    Search Results


    • 1. Which two code fragments will compile?
      1. interface Base2 implements Base {}
      2. abstract class Class2 extends Base
        { public boolean m1(){ return true; }}
      3. abstract class Class2 implements Base {}
      4. abstract class Class2 implements Base
        { public boolean m1(){ return (7 > 4); }}
      5. abstract class Class2 implements Base
        { protected boolean m1(){ return (5 > 7) }}
      interface Base 
      {
          boolean m1 ();
          byte m2(short s);
      }
      

    • Options
    • A. 1 and 2
    • B. 2 and 3
    • C. 3 and 4
    • D. 1 and 5
    • Discuss
    • 2. Which cause a compiler error?

    • Options
    • A. int[ ] scores = {3, 5, 7};
    • B. int [ ][ ] scores = {2,7,6}, {9,3,45};
    • C. String cats[ ] = {"Fluffy", "Spot", "Zeus"};
    • D. boolean results[ ] = new boolean [] {true, false, true};
    • E. Integer results[ ] = {new Integer(3), new Integer(5), new Integer(8)};
    • Discuss
    • 3. What is the prototype of the default constructor?
      public class Test { }
      

    • Options
    • A. Test( )
    • B. Test(void)
    • C. public Test( )
    • D. public Test(void)
    • Discuss
    • 4. You want a class to have access to members of another class in the same package. Which is the most restrictive access that accomplishes this objective?

    • Options
    • A. public
    • B. private
    • C. protected
    • D. default access
    • Discuss
    • 5. Which two cause a compiler error?

      1. float[ ] f = new float(3);
      2. float f2[ ] = new float[ ];
      3. float[ ]f1 = new float[3];
      4. float f3[ ] = new float[3];
      5. float f5[ ] = {1.0f, 2.0f, 2.0f};

    • Options
    • A. 2, 4
    • B. 3, 5
    • C. 4, 5
    • D. 1, 2
    • Discuss
    • 6. Which one creates an instance of an array?

    • Options
    • A. int[ ] ia = new int[15];
    • B. float fa = new float[20];
    • C. char[ ] ca = "Some String";
    • D. int ia[ ] [ ] = { 4, 5, 6 }, { 1,2,3 };
    • Discuss
    • 7. What is the widest valid returnType for methodA in line 3?
      public class ReturnIt 
      { 
          returnType methodA(byte x, double y) /* Line 3 */
          { 
              return (long)x / y * 2; 
          } 
      }
      

    • Options
    • A. int
    • B. byte
    • C. long
    • D. double
    • Discuss
    • 8. Which class does not override the equals() and hashCode() methods, inheriting them directly from class Object?

    • Options
    • A. java.lang.String
    • B. java.lang.Double
    • C. java.lang.StringBuffer
    • D. java.lang.Character
    • Discuss
    • 9. Which collection class allows you to associate its elements with key values, and allows you to retrieve objects in FIFO (first-in, first-out) sequence?

    • Options
    • A. java.util.ArrayList
    • B. java.util.LinkedHashMap
    • C. java.util.HashMap
    • D. java.util.TreeMap
    • Discuss
    • 10. Which interface does java.util.Hashtable implement?

    • Options
    • A. Java.util.Map
    • B. Java.util.List
    • C. Java.util.HashTable
    • D. Java.util.Collection
    • Discuss


    Comments

    There are no comments.

Enter a new Comment