Question:The output generated by the following code will be: string t = "This Is a Test"; t.Replace("T", "?"); Console.WriteLine(t);
A ?his Is a ?est B ?his Is a ?es? C This Is a Test D ?his Is a Test
+ AnswerC
+ Report