Declarations and Access Control Questions and Answers

Take Exam

Declarations and Access Control form the foundation of Java programming, ensuring secure and structured code management. This section provides Java programming questions and answers focusing on classes, objects, access modifiers, and variable scope. Ideal for students preparing for TCS, Infosys, Capgemini, and Wipro technical interviews, these questions test your understanding of Java’s encapsulation and visibility rules. Each question includes explanations to reinforce key concepts. Practicing these Java MCQs with solutions PDF helps improve coding accuracy and interview performance. Whether you’re a beginner or preparing for a coding round, mastering these topics is crucial for success in programming assessments.

Declarations and Access Control

Showing 10 of 18 questions

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

  • public
  • private
  • protected
  • transient
Show Answer Report

2. public class Outer {     public void someOuterMethod()     {         //Line 5     }     public class Inner { }         public static void main(String[] argv)     {         Outer ot = new Outer();         //Line 10     } } Which of the following code fragments inserted, will allow to compile?

  • new Inner(); //At line 5
  • new Inner(); //At line 10
  • new ot.Inner(); //At line 10
  • new Outer.Inner(); //At line 10
Show Answer Report

3. interface Base {     boolean m1 ();     byte m2(short s); } 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) }}

  • 1 and 2
  • 2 and 3
  • 3 and 4
  • 1 and 5
Show Answer Report

4.  Which three form part of correct array declarations? 1. public int a [ ]      2. static int [ ] a      3. public [ ] int a      4. private int a [3]      5.private int [3] a [ ]     6. public final int [ ] a

  • 1, 3, 4
  • 2, 4, 5
  • 1, 2, 6
  • 2, 5, 6
Show Answer Report

5. public class Test { } What is the prototype of the default constructor?

  • Test( )
  • Test(void)
  • public Test( )
  • public Test(void)
Show Answer Report

6. What is the most restrictive access modifier that will allow members of one class to have access to members of another class in the same package?

  • public
  • abstract
  • protected
  • synchronized
Show Answer Report

7. Which of the following is/are legal method declarations?     protected abstract void m1();     static final void m1(){}     synchronized public final void m1() {}     private native void m1();

  • 1 and 3
  • 2 and 4
  • 1 only
  • All of them are legal declarations.
Show Answer Report

8. Which cause a compiler error?

  • int[ ] scores = {3, 5, 7};
  • int [ ][ ] scores = {2,7,6}, {9,3,45};
  • String cats[ ] = {"Fluffy", "Spot", "Zeus"};
  • boolean results[ ] = new boolean [] {true, false, true};
Show Answer Report

9. Which three are valid method signatures in an interface?     private int getArea();     public float getVol(float x);     public void main(String [] args);     public static void main(String [] args);     boolean setFlag(Boolean [] test);

  • 1 and 2
  • 2, 3 and 5
  • 3, 4, and 5
  • 2 and 4
Show Answer Report

10. 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?

  • public
  • private
  • protected
  • default access
Show Answer Report
Questions and Answers for Competitive Exams Various Entrance Test