What is the output if following code executed? static void Main(string[] args){ String obj = "sample"; String obj1 = "program"; String obj2 = obj; Console.WriteLine(obj + " " + obj1); string s = obj + " " + obj1; Console.WriteLine(s.Length); Console.ReadLine(); }
Correct Answer: Sample program
Explanation:
Note: This Question is unanswered, help us to find answer for this one
More C# MCQ Questions