1.

Choose Output for the following set of code : static void Main(string[] args) { string s1 = "Hello" + " I " + "Love" + " ComputerScience "; Console.WriteLine(s1); Console.ReadLine(); }

A. HelloILoveComputerScience
B. Hello I Love ComputerScience
C. Compile time error
D. Hello
Answer» C. Compile time error


Discussion

No Comment Found