

MCQOPTIONS
Saved Bookmarks
1. |
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; } void print() { system.out.println(" " + y); } } class access_specifier { public static void main(String args[]) { access obj = new access(); obj.cal(2, 3); System.out.println(obj.x); obj.print(); } } |
A. | 2 3 |
B. | 3 3 |
C. | Runtime Error |
D. | Compilation Error |
Answer» C. Runtime Error | |