Vidyalelo
C# Programming · Q116

Miscellaneous in C Sharp

Programming · C# Programming · question 116

Q116

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; class Program static void Main(string[] args) access obj = new access(); obj.cal(2, 3); Console.WriteLine(obj.x + " " + obj.y);

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

Answer: Option D

Solution

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