Q55
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
AnswerD.
Compilation Error
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board