Vidyalelo
C# Programming · Q197

Classes and Objects in C Sharp

Programming · C# Programming · question 197

Q197

What will be the output of the following C# code? class maths int fact(int n) int result; if (n == 1) return 1; result = fact(n - 1) * n; return result; class Output static void main(String args[]) maths obj = new maths() ; Console.WriteLine(obj.fact(1));

A.
2
B.
10
C.
1
Answer
D.
0

Answer: Option C

Solution

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