Q77
Select the output for the following set of code : static void Main(string[] args) int a = 0; int i = 0; int b; for (i = 0; i < 5; i++) a++; Console.WriteLine("Hello "); continue; Console.ReadLine();
A.
print hello 4 times
B.
print hello 3 times
C.
print hello 5 times
AnswerD.
print hello infinite times
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board