adplus-dvertising
frame-decoration

Question

What is the output of this program?
    class access
    {
        public int x;
  private int y;
        void cal(int a, int b)
        {
            x =  a + 1;
            y =  b;
        }        
    }    
    class access_specifier 
    {
        public static void main(String args[])
        {
            access obj = new access();   
            obj.cal(2, 3);
            System.out.println(obj.x + " " + obj.y);     
        }
   }

a.

3 3

b.

2 3

c.

Runtime Error

d.

Compilation Error

Answer: (c).Runtime Error

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What is the output of this program?

Similar Questions

Discover Related MCQs

Q. Which one of the following is not an access modifier?

Q. All the variables of class should be ideally declared as?

Q. Which of the following modifier means a particular variable cannot be accessed within the package?

Q. How can a protected modifier be accessed?

Q. What happens if constructor of class A is made private?

Q. All the variables of interface should be?

Q. What is true of final class?

Q. How many copies of static and class variables are created when 10 objects are created of a class?

Q. Can a class be declared with a protected modifier.

Q. Which is the modifier when there is none mentioned explicitly?

Q. Arrays in Java are implemented as?

Q. Which of these keywords is used to prevent content of a variable from being modified?

Q. Which of these cannot be declared static?

Q. Which of these methods must be made static?

Q. String in Java is a?

Q. Which of these method of String class is used to obtain character at specified index?

Q. Which of these keywords is used to refer to member of base class from a subclass?

Q. Which of these method of String class can be used to test to strings for equality?

Q. Which of these is the method which is executed first before execution of any other thing takes place in a program?

Q. What is the process of defining more than one method in a class differentiated by parameters?