Vidyalelo
C# Programming · Q166

Miscellaneous in C Sharp

Programming · C# Programming · question 166

Q166

What will be the output of the following C# code snippet? class access public int x; private int y; public void cal(int a, int b) x = a + 1; y = b; public void print() Console.WriteLine(" " + y); class Program static void Main(string[] args) access obj = new access(); obj.cal(2, 3); Console.WriteLine(obj.x); obj.print(); Console.ReadLine();

A.
2 3
B.
3 3
Answer
C.
Run time error
D.
Compile time error

Answer: Option B

Solution

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