Examveda

What will be the output of the following C# code?
static void Main(string[] args)
{
    String obj = "hello";
    String obj1 = "worn";   
    String obj2 = obj;
    Console.WriteLine(obj + "  " + (obj1.Replace('w' ,'c')));
    Console.ReadLine();
}

A. hello hello

B. hello worn

C. hello corn

D. hello

Answer: Option C


Join The Discussion

Related Questions on Arrays and Strings in C Sharp