Q76
What will be the output of the following C# code? static void Main(string[] args) int i = 30; int j = 25 % 25; if (Convert.ToBoolean(Convert.ToInt32(i = j))) Console.WriteLine("In if"); else Console.WriteLine("In else"); Console.WriteLine("In main"); Console.ReadLine();
A.
In if
B.
In else
C.
In if
In main
In main
D.
In else
In main
AnswerIn main
Answer: Option D
Solution
Answer: Option D
No explanation is given for this question Let's Discuss on Board