Vidyalelo
C# Programming · Q76

Control Flow Statements in C Sharp

Programming · C# Programming · question 76

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
D.
In else
In main
Answer

Answer: Option D

Solution

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