1.

What will be the output for the given set of code? static void Main(string[] args) { String c = "Hello"; String a = c + "Bye"; Console.WriteLine(a); Console.ReadLine(); }

A. Hello Bye
B. HelloBye
Answer» E.


Discussion

No Comment Found