Vidyalelo
C# Programming · Q214

Classes and Objects in C Sharp

Programming · C# Programming · question 214

Q214

What will be the output of the following C# code? class abc public static void a() console.writeline("first method"); public void b() a(); console.writeline("second method"); public void b(int i) console.writeline(i); b(); class program static void main() abc k = new abc(); abc.a(); k.b(20);

A.
second method
20
second method
first method
B.
first method
20
first method
second method
Answer
C.
first method
20
D.
second method
20
first method

Answer: Option B

Solution

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