Vidyalelo
Java Programming · Q58

Flow Control

Programming · Java Programming · question 58

Q58

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; void print() System.out.println(" " + y); public 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
Answer
C.
Runtime Error
D.
Compilation Error

Answer: Option B

Solution

Answer: Option B
No explanation is given for this question Let's Discuss on Board