Examveda
Examveda

What will be the output of the following Java code?
class access
{
    public int x;
private int y;
    void cal(int a, int b)
    {
        x =  a + 1;
        y =  b;
    }        
}    
public 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: Option C


This Question Belongs to Java Program >> Flow Control

Join The Discussion

Related Questions on Flow Control